Skip to content

Commit e6fd370

Browse files
committed
linting
1 parent 5a33495 commit e6fd370

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/psij/job_spec.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _to_env_dict(arg: Union[Dict[str, Union[str, int]], None]) -> Dict[str, str]
2525
if arg is None:
2626
return dict()
2727
ret = dict()
28-
for k,v in arg.items():
28+
for k, v in arg.items():
2929
if isinstance(v, int):
3030
ret[k] = str(v)
3131
else:
@@ -41,7 +41,8 @@ def __init__(self, executable: Optional[str] = None, arguments: Optional[List[st
4141
# sphinx fails to find the class. Using Path in the getters and setters does not
4242
# appear to trigger a problem.
4343
directory: Union[str, pathlib.Path, None] = None, name: Optional[str] = None,
44-
inherit_environment: bool = True, environment: Optional[Dict[str, Union[str, int]]] = None,
44+
inherit_environment: bool = True,
45+
environment: Optional[Dict[str, Union[str, int]]] = None,
4546
stdin_path: Union[str, pathlib.Path, None] = None,
4647
stdout_path: Union[str, pathlib.Path, None] = None,
4748
stderr_path: Union[str, pathlib.Path, None] = None,

0 commit comments

Comments
 (0)