Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
yanone committed Jan 10, 2024
1 parent 31165ac commit 3b0b1be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shaperglot/checks/shaping_differs.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def describe(self):
else:
result = "the outputs differ."
full_result = f"that, when {self.inputs[0].describe()}, "
for i in range(1, len(self.inputs)):
full_result += f"and then {self.inputs[i].describe()}, "
for input_index in range(1, len(self.inputs)):
full_result += f"and then {self.inputs[input_index].describe()}, "
full_result += result
if str(self.definition["rationale"]):
full_result += f" This is because {self.definition['rationale']}."
Expand Down

0 comments on commit 3b0b1be

Please sign in to comment.