Skip to content

Commit

Permalink
Fixed flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyutillis committed Sep 28, 2023
1 parent d1c4c10 commit d794a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
def cache(func: Callable) -> Callable:
stored_runs = {}

def wrapper(*args):
def wrapper(*args) -> int:
if args in stored_runs:
print("Getting from cache")
return stored_runs[args]
Expand Down

0 comments on commit d794a30

Please sign in to comment.