Skip to content

Commit d0f1e10

Browse files
fix lint
1 parent 3cd74b6 commit d0f1e10

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

drift/instrumentation/utils/psycopg_utils.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,9 @@ def _convert(value: Any, type_code: int | None) -> Any:
211211
return {key: _convert(value, type_code_by_name.get(key)) for key, value in row.items()}
212212

213213
return [
214-
_convert(value, description[i].get("type_code") if i < len(description) and isinstance(description[i], dict) else None)
214+
_convert(
215+
value,
216+
description[i].get("type_code") if i < len(description) and isinstance(description[i], dict) else None,
217+
)
215218
for i, value in enumerate(row)
216219
]

0 commit comments

Comments
 (0)