Skip to content

Commit

Permalink
fixed trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Hog committed Aug 8, 2024
1 parent 79ba619 commit 8a21540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshroom/core/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,7 @@ def getGlobalStatus(self):
chunksStatus = [chunk.status.status for chunk in self._chunks]

anyOf = (Status.ERROR, Status.STOPPED, Status.KILLED, Status.RUNNING, Status.BUILD, Status.FIRST_RUN,
Status.SUBMITTED),
Status.SUBMITTED,)
allOf = (Status.SUCCESS,)

for status in anyOf:
Expand Down

0 comments on commit 8a21540

Please sign in to comment.