remove redundant makedirs

This commit is contained in:
Passant 2022-10-11 05:00:12 -07:00
parent 8540c4fcdf
commit 7dccb3aeb4
1 changed files with 1 additions and 5 deletions

View File

@ -155,11 +155,7 @@ if __name__ == "__main__":
except FileExistsError:
# directory already exists
pass
try:
os.makedirs(log)
except FileExistsError:
# directory already exists
pass
try:
os.makedirs(os.path.join(log,args.design))
except FileExistsError: