Skip to content

Commit

Permalink
Merge branch 'main' into 19161-new-loadentity-return-type
Browse files Browse the repository at this point in the history
  • Loading branch information
calebwherry authored Feb 5, 2024
2 parents cd69921 + c713d87 commit 0efec69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion amalgam/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def __init__( # noqa: C901
execution_trace_dir).expanduser().absolute()
# Create the trace directory if needed
if not self.execution_trace_dir.exists():
self.execution_trace_dir.mkdir(parents=True)
self.execution_trace_dir.mkdir(parents=True, exist_ok=True)

# increment a counter on the file name, if file already exists..
self.execution_trace_filepath = Path(
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"amalgam": "47.1.3"
"amalgam": "47.1.4"
}
}

0 comments on commit 0efec69

Please sign in to comment.