diff --git a/docs/tutorial/local.md b/docs/tutorial/local.md index 819f5aa1..12f17414 100644 --- a/docs/tutorial/local.md +++ b/docs/tutorial/local.md @@ -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}}"