Skip to content

Commit ea31229

Browse files
committed
remove ignore operator
1 parent 829c53f commit ea31229

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/capture_db_queries/wrappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,6 @@ def format_explain(self, result: Explain) -> Generator[str, None, None]:
153153
output_formatter = json.dumps if format_ and format_.lower() == 'json' else str
154154
for row in nested_result[0]:
155155
if not isinstance(row, str):
156-
yield ' '.join(output_formatter(c) for c in row) # type: ignore[operator]
156+
yield ' '.join(output_formatter(c) for c in row)
157157
else:
158158
yield row

0 commit comments

Comments
 (0)