Skip to content

Commit

Permalink
CH-109 applications dependencies update
Browse files Browse the repository at this point in the history
  • Loading branch information
filippomc committed Jan 15, 2024
1 parent f997891 commit fe981b3
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion applications/volumemanager/server/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ werkzeug == 0.16.1; python_version=="3.5" or python_version=="3.4"
swagger-ui-bundle >= 0.0.2
python_dateutil >= 2.6.0
setuptools >= 21.0.0
Flask == 1.1.2
Flask == 2.1.1
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
class Model(object):
# openapiTypes: The key is attribute name and the
# value is attribute type.
openapi_types = {}
openapi_types: typing.Dict[str, type] = {}

# attributeMap: The key is attribute name and the
# value is json key in definition.
attribute_map = {}
attribute_map: typing.Dict[str, str] = {}

@classmethod
def from_dict(cls: typing.Type[T], dikt) -> T:
Expand Down
2 changes: 1 addition & 1 deletion applications/workflows/api/config.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{"packageName": "workflows_api"}
2 changes: 1 addition & 1 deletion applications/workflows/server/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ werkzeug == 0.16.1; python_version=="3.5" or python_version=="3.4"
swagger-ui-bundle >= 0.0.2
python_dateutil >= 2.6.0
setuptools >= 21.0.0
Flask == 1.1.2
Flask == 2.1.1
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
class Model(object):
# openapiTypes: The key is attribute name and the
# value is attribute type.
openapi_types = {}
openapi_types: typing.Dict[str, type] = {}

# attributeMap: The key is attribute name and the
# value is json key in definition.
attribute_map = {}
attribute_map: typing.Dict[str, str] = {}

@classmethod
def from_dict(cls: typing.Type[T], dikt) -> T:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ servers:
- description: Metacell host
url: /api
tags:
- description: standard creation, listing and retrieve
- description: "standard creation, listing and retrieve"
name: Create and Access
paths:
/operations:
Expand Down Expand Up @@ -100,7 +100,7 @@ paths:
name: name
required: true
schema:
pattern: ^[0-9A-Za-z\s\-]+$
pattern: "^[0-9A-Za-z\\s\\-]+$"
type: string
style: simple
responses:
Expand Down Expand Up @@ -136,7 +136,7 @@ paths:
name: name
required: true
schema:
pattern: ^[0-9A-Za-z\s\-]+$
pattern: "^[0-9A-Za-z\\s\\-]+$"
type: string
style: simple
responses:
Expand Down Expand Up @@ -167,10 +167,12 @@ components:
createTime: 2016-08-29T09:12:33.001Z
name: name
message: ""
status: null
- workflow: workflow
createTime: 2016-08-29T09:12:33.001Z
name: name
message: ""
status: null
properties:
meta:
$ref: '#/components/schemas/SearchResultData'
Expand All @@ -197,6 +199,7 @@ components:
createTime: 2016-08-29T09:12:33.001Z
name: name
message: ""
status: null
properties:
message:
description: usually set when an error occurred
Expand Down

0 comments on commit fe981b3

Please sign in to comment.