Skip to content

Commit

Permalink
Create parents of traces/
Browse files Browse the repository at this point in the history
  • Loading branch information
lslunis committed Sep 28, 2022
1 parent bef1ebc commit f47f4f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ice/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def make_id() -> str:


trace_dir = Path(__file__).parent.parent / "ui" / "public" / "traces"
trace_dir.mkdir(exist_ok=True)
trace_dir.mkdir(parents=True, exist_ok=True)
trace_file: IO[str] | None = None


Expand Down

0 comments on commit f47f4f9

Please sign in to comment.