Skip to content

Commit

Permalink
Allow exist for make directory
Browse files Browse the repository at this point in the history
Signed-off-by: arctic4161 <[email protected]>
  • Loading branch information
Arctic4161 committed Aug 20, 2024
1 parent 36e49b3 commit ee1c628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class GUILayout(MDFloatLayout, MDGridLayout):
'Played'))
else:
set_local_download = f'{os.getcwd()}//Downloaded//Played'
os.makedirs(set_local_download)
os.makedirs(set_local_download, exist_ok=True)

def __draw_shadow__(self, origin, end, context=None):
pass
Expand Down

0 comments on commit ee1c628

Please sign in to comment.