removed unused var

This commit is contained in:
Jan Friedli 2020-07-13 08:44:03 +02:00
parent b7415adfa3
commit 1534dd3301
No known key found for this signature in database
GPG Key ID: F945FA2FCA30549D
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ If you go to https://matweb.info/apidocs you can find a Swagger documentation.
## Upload Endpoint
**Endpoint:** `/api/upload`
**Endpoint:** `/api/upload`__
**HTTP Verbs:** POST

View File

@ -33,7 +33,7 @@ def create_app(test_config=None):
# Restful API hookup
api = Api(app)
swagger = Swagger(app)
Swagger(app)
CORS(app, resources={r"/api/*": {"origins": utils.get_allow_origin_header_value()}})
api.add_resource(
rest_api.APIUpload,