Add Session and Client __repr__ implementations

This commit is contained in:
Mads Marquart
2020-01-09 10:32:30 +01:00
parent a36ff5ee6e
commit cf24c7e8c2
2 changed files with 9 additions and 2 deletions

View File

@@ -70,6 +70,9 @@ class Client:
self._session = session
self._uid = session.user_id
def __repr__(self):
return "Client(session={!r})".format(self._session)
"""
INTERNAL REQUEST METHODS
"""