We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ddabb1 commit 0d23182Copy full SHA for 0d23182
asyncpg/protocol/settings.pyx
@@ -107,7 +107,7 @@ cdef class ConnectionSettings(pgproto.CodecContext):
107
except KeyError:
108
raise AttributeError(name) from None
109
110
- return object.__getattr__(self, name)
+ return object.__getattribute__(self, name)
111
112
def __repr__(self):
113
return '<ConnectionSettings {!r}>'.format(self._settings)
0 commit comments