Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion databases/backends/postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def __len__(self) -> int:
return len(self._row)

def __getattr__(self, name: str) -> typing.Any:
return self._mapping.get(name)
return self.__getitem__(name)


class PostgresConnection(ConnectionBackend):
Expand Down