Removes type hinting, in case that's breaking something.
This commit is contained in:
parent
054bd88760
commit
7ce48e8deb
|
@ -21,10 +21,8 @@ if "TESTING" in os.environ and os.environ["TESTING"] == "true":
|
|||
|
||||
|
||||
db = SQLAlchemy(app)
|
||||
""":type: sqlalchemy.orm.SQLAlchemy"""
|
||||
|
||||
session = db.session
|
||||
""":type: sqlalchemy.orm.Session"""
|
||||
|
||||
migrate = Migrate(app, db)
|
||||
ma = Marshmallow(app)
|
||||
|
|
|
@ -133,7 +133,6 @@ paths:
|
|||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/Error"
|
||||
|
||||
/study/{study_id}/workflows:
|
||||
get:
|
||||
operationId: api.study.get_study_workflows
|
||||
|
@ -322,7 +321,6 @@ paths:
|
|||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/File"
|
||||
|
||||
/file/{file_id}:
|
||||
parameters:
|
||||
- name: file_id
|
||||
|
@ -537,14 +535,12 @@ paths:
|
|||
schema:
|
||||
$ref: "#/components/schemas/Error"
|
||||
|
||||
|
||||
components:
|
||||
schemas:
|
||||
DataModel:
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
|
||||
Study:
|
||||
properties:
|
||||
id:
|
||||
|
|
Loading…
Reference in New Issue