Skip to content

Commit

Permalink
fixing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
J-A-Ha committed Aug 2, 2024
1 parent 7926849 commit a285309
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions art/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import pickle

def open_file(file_address: str = 'request_input'): # type: ignore
def open_file(file_address: str = 'request_input'): # type: ignore

if file_address == 'request_input':
file_address = input('File address: ')
Expand All @@ -21,4 +21,4 @@ def open_file(file_address: str = 'request_input'): # type: ignore
with open(file_address, 'rb') as f:
review = pickle.load(f)

return review #type: ignore
return review

0 comments on commit a285309

Please sign in to comment.