Skip to content

Commit

Permalink
Indent .format
Browse files Browse the repository at this point in the history
  • Loading branch information
JokeWaumans committed Jul 25, 2024
1 parent 2369e6f commit f3ddb51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mlx/warnings/polyspace_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def check(self, content):
if content[self.column_name].lower() == self.check_value:
if content["status"].lower() in ["not a defect", "justified"]:
self.print_when_verbose("Excluded row {!r} because the status is 'Not a defect' or 'Justified'"
.format(content))
.format(content))
else:
tab_sep_string = "\t".join(content.values())
if not self._is_excluded(tab_sep_string):
Expand Down

0 comments on commit f3ddb51

Please sign in to comment.