Skip to content

Commit

Permalink
Fix exist_ok param
Browse files Browse the repository at this point in the history
Co-authored-by: Sean Quinlan <1011062+sbquinlan@users.noreply.github.com>
  • Loading branch information
yuvipanda and sbquinlan authored Oct 25, 2023
1 parent 66126a8 commit 09c4710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorial/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import os
HERE = Path(__file__).parent

DATA_PREFIX = HERE / 'data'
os.makedirs(DATA_PREFIX, exists_ok=True)
os.makedirs(DATA_PREFIX, exist_ok=True)

# Target output should be partitioned by job id
c.TargetStorage.root_path = f"{DATA_PREFIX}/{{job}}"
Expand Down

0 comments on commit 09c4710

Please sign in to comment.