Skip to content

Commit

Permalink
PEP8 #2714
Browse files Browse the repository at this point in the history
  • Loading branch information
iamleeg committed Jun 20, 2022
1 parent 84b44ef commit a67022e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ def get_case(self, id: str):
def list_cases(self):
"""Implements get /cases."""
cases = self._store.all_cases()
return jsonify(cases), 200
return jsonify(cases), 200
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def case_by_id(self, id: str):

def put_case(self, id: str, case: Case):
self.cases[id] = case

def all_cases(self):
return list(self.cases.values())

Expand Down

0 comments on commit a67022e

Please sign in to comment.