Skip to content

Commit 0e12ae6

Browse files
committed
Fixed typo in property name.
1 parent dc1b82e commit 0e12ae6

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
@@ -137,7 +137,7 @@ def __init__(self, executable: Optional[str] = None, arguments: Optional[List[st
137137
# care of the conversion, but mypy gets confused
138138
self._directory = _to_path(directory)
139139
self.inherit_environment = inherit_environment
140-
self.environment = _to_env_dict(environment)
140+
self._environment = _to_env_dict(environment)
141141
self._stdin_path = _to_path(stdin_path)
142142
self._stdout_path = _to_path(stdout_path)
143143
self._stderr_path = _to_path(stderr_path)

0 commit comments

Comments
 (0)