Blackened

This commit is contained in:
jtc42 2020-01-03 00:21:16 +00:00
parent 6be8b0044a
commit ab6fa9f0e5
11 changed files with 104 additions and 80 deletions

View file

@ -48,6 +48,7 @@ class PluginListResource(Resource):
"""
List and basic documentation for all enabled plugins
"""
@marshal_with(PluginSchema(many=True))
def get(self):
"""

View file

@ -39,6 +39,7 @@ class TaskList(Resource):
"""
List and basic documentation for all session tasks
"""
@marshal_with(TaskSchema(many=True))
def get(self):
return tasks.tasks()