Skip to content

Commit

Permalink
windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Nov 8, 2024
1 parent 2c34f22 commit 26305a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executorlib/standalone/cache/spawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def execute_in_subprocess(
raise ValueError("backend parameter is not supported for subprocess spawner.")
if resource_dict is None:
resource_dict = {}
if "cwd" in resource_dict and resource_dict["cwd"] is not None:
if "cwd" in resource_dict:
cwd = resource_dict["cwd"]
else:
cwd = cache_directory
Expand Down

0 comments on commit 26305a8

Please sign in to comment.