Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify codes #928

Merged
merged 23 commits into from
Apr 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update parallel_driver.py
  • Loading branch information
lee1043 committed Apr 28, 2023
commit 02bb7ee516e199b5c3543dcbddcfddf108a2a3cc
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@
# Create output directories
# -------------------------------------------------
for output_type in ["graphics", "diagnostic_results", "metrics_results"]:
if not os.path.exists(outdir(output_type=output_type)):
os.makedirs(outdir(output_type=output_type))
os.makedirs(outdir(output_type=output_type), exist_ok=True)
print(outdir(output_type=output_type))

# =================================================
Expand Down