1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-07-24 23:17:43 +00:00

Small typo

This commit is contained in:
sudosnok 2022-03-27 17:50:41 +01:00
parent 59001b7153
commit 4b2f47942a

View file

@ -34,7 +34,7 @@ class Repository(APIOBJECT):
super().__init__(response, session)
tmp = self.__slots__ + APIOBJECT.__slots__
keys = {key: value for key,value in self._response.items() if key in tmp}
for key, value in key.items():
for key, value in keys.items():
if key == 'owner':
self.owner = PartialUser(value, self.session)
return