Skip to content

Commit

Permalink
Update for new version of black
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisherlevine committed Jun 21, 2023
1 parent 3769745 commit 1127f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/ctrl/mpexec/cmdLineFwk.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def _checkOutputInputConsistency(self) -> str | None:
# contiguous subsequence of outputs (normally they're also at the
# end, but --rebase will in general put them in the middle).
for n in reversed(range(1 + len(self.output.chain) - len(self.inputs))):
if self.inputs == self.output.chain[n:n + len(self.inputs)]:
if self.inputs == self.output.chain[n : n + len(self.inputs)]:
return None
return (
f"Output CHAINED collection {self.output.name!r} exists and does not include the "
Expand Down

0 comments on commit 1127f7b

Please sign in to comment.