From f71dd58098c2e31bac9d16414ebf85651df59b52 Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sat, 23 Sep 2023 23:21:38 +0200 Subject: [PATCH] TST: Whitespace issue --- flake8_simplify/rules/ast_call.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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):