From 6daff525eca75140252e40189b4e820b4c8f7fba Mon Sep 17 00:00:00 2001 From: sudosnok Date: Sun, 27 Mar 2022 13:06:54 +0100 Subject: [PATCH] Fixed timestamp issues --- Github/objects/repo.py | 2 +- Github/objects/user.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Github/objects/repo.py b/Github/objects/repo.py index d709920..965585b 100644 --- a/Github/objects/repo.py +++ b/Github/objects/repo.py @@ -46,4 +46,4 @@ class Repository(APIOBJECT): setattr(self, key, value) def __repr__(self) -> str: - return f'' + return f'' diff --git a/Github/objects/user.py b/Github/objects/user.py index 091ccc8..6aaf26d 100644 --- a/Github/objects/user.py +++ b/Github/objects/user.py @@ -50,7 +50,7 @@ class User(_BaseUser): setattr(self, key, value) def __repr__(self): - return f'' + return f'' @classmethod async def get_user(cls, session: aiohttp.ClientSession, username: str) -> 'User': @@ -73,7 +73,7 @@ class PartialUser(_BaseUser): def __repr__(self): - return f'' + return f'' async def _get_user(self): """Upgrades the PartialUser to a User object."""