diff --git a/flake8_simplify/rules/ast_call.py b/flake8_simplify/rules/ast_call.py index 0e0d7f7..c6a2831 100644 --- a/flake8_simplify/rules/ast_call.py +++ b/flake8_simplify/rules/ast_call.py @@ -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):