diff options
Diffstat (limited to 'opendc/api/v2/specifications/memories/endpoint.py')
| -rw-r--r-- | opendc/api/v2/specifications/memories/endpoint.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/opendc/api/v2/specifications/memories/endpoint.py b/opendc/api/v2/specifications/memories/endpoint.py index 271824b3..95025418 100644 --- a/opendc/api/v2/specifications/memories/endpoint.py +++ b/opendc/api/v2/specifications/memories/endpoint.py @@ -11,8 +11,4 @@ def GET(request): # Return the Memories - return Response( - 200, - 'Successfully retrieved Memories.', - [x.to_JSON() for x in memories] - ) + return Response(200, 'Successfully retrieved Memories.', [x.to_JSON() for x in memories]) |
