Skip to content

Commit 6c140f0

Browse files
committed
Fixed formatting
1 parent 9e6e2a5 commit 6c140f0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

exasol/error/_parse.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,11 @@ def _validate_mitigations(self, node: ast.expr, file: str) -> Optional[List[str]
261261
def normalize(self, params: ast.Dict) -> Iterator[Tuple[str, str]]:
262262
for k, v in zip(params.keys, params.values):
263263
if (
264-
isinstance(v, ast.Call)
265-
and isinstance(k, ast.Constant)
266-
and k.value is not None
267-
and isinstance(v.args[1], ast.Constant)
268-
and v.args[1].value is not None
264+
isinstance(v, ast.Call)
265+
and isinstance(k, ast.Constant)
266+
and k.value is not None
267+
and isinstance(v.args[1], ast.Constant)
268+
and v.args[1].value is not None
269269
):
270270
yield k.value, v.args[1].value
271271
elif isinstance(k, ast.Constant) and k.value is not None:

0 commit comments

Comments
 (0)