Skip to content

Commit 1c4e511

Browse files
committed
optional dict...
1 parent 8e475e5 commit 1c4e511

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psij/job_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def _to_path(arg: Union[str, pathlib.Path, None]) -> Optional[pathlib.Path]:
2121
return pathlib.Path(arg)
2222

2323

24-
def _to_env_dict(arg: Union[Dict[str, Union[str, int]], None]) -> Dict[str, str]:
24+
def _to_env_dict(arg: Union[Dict[str, Union[str, int]], None]) -> Optional[Dict[str, str]]:
2525
if arg is None:
2626
return None
2727
ret = dict()

0 commit comments

Comments
 (0)