Skip to content

Commit 58c93e6

Browse files
authored
Merge pull request #38 from NACLab/main
process execute bug fix
2 parents 79a4778 + 82728e5 commit 58c93e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ngcsimlib/compilers/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def execute(self, update_state=False, **kwargs):
144144
for arg in self._needed_args:
145145
if arg not in kwargs.keys():
146146
warn("Missing kwarg", arg, "in kwargs for Process", self.name)
147-
return
147+
return
148148
state = self.pure(self.get_required_state(include_special_compartments=True), **kwargs)
149149
if update_state:
150150
self.updated_modified_state(state)

0 commit comments

Comments
 (0)