Skip to content

Commit

Permalink
TST: Whitespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinThoma committed Sep 23, 2023
1 parent 156092b commit f71dd58
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flake8_simplify/rules/ast_call.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,10 @@ def get_sim911(node: ast.AST) -> List[Tuple[int, int, str]]:
)
)
"""
RULE = "SIM911 Use '{name}.items()' instead of 'zip({name}.keys(),{name}.values())'"
RULE = (
"SIM911 Use '{name}.items()' instead of "
"'zip({name}.keys(), {name}.values())'"
)
errors: List[Tuple[int, int, str]] = []

if isinstance(node, ast.Call):
Expand Down

0 comments on commit f71dd58

Please sign in to comment.