Ignore existing dirs

master
Nick Krichevsky 2024-12-01 08:01:52 -05:00
parent a0c01e2a31
commit 566fdbcc48
1 changed files with 4 additions and 1 deletions

View File

@ -201,7 +201,10 @@ def wait_for_next_puzzle():
def ensure_dir(path: pathlib.Path):
os.makedirs(path)
try:
os.makedirs(path)
except FileExistsError:
pass
def setup_logs(verbose: bool):