notify-api-412 use black to enforce python style standards

This commit is contained in:
Kenneth Kehl
2023-08-23 10:35:43 -07:00
parent a7898118d7
commit 026dc14021
586 changed files with 33981 additions and 23452 deletions
+3 -10
View File
@@ -7,9 +7,7 @@ get_all_template_request = {
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "request schema for parameters allowed when getting all templates",
"type": "object",
"properties": {
"type": {"enum": TEMPLATE_TYPES}
},
"properties": {"type": {"enum": TEMPLATE_TYPES}},
"additionalProperties": False,
}
@@ -20,14 +18,9 @@ get_all_template_response = {
"properties": {
"templates": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/template"
}
"items": {"type": "object", "$ref": "#/definitions/template"},
}
},
"required": ["templates"],
"definitions": {
"template": template
}
"definitions": {"template": template},
}