Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit 962a806

Browse files
committed
fixed mypy error
1 parent 5e54432 commit 962a806

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

databases/backends/postgres.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, row: tuple, result_columns: tuple, dialect: Dialect) -> None:
7979
for idx, (_, _, column, datatype) in enumerate(self._result_columns)
8080
}
8181

82-
def __getitem__(self, key) -> typing.Any:
82+
def __getitem__(self, key: typing.Any) -> typing.Any:
8383
if type(key) is Column:
8484
idx, datatype = self._column_map_full[str(key)]
8585
else:

0 commit comments

Comments
 (0)