diff options
Diffstat (limited to 'pygithub3/github.py')
-rw-r--r-- | pygithub3/github.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/github.py b/pygithub3/github.py index d05f069..5b5353d 100644 --- a/pygithub3/github.py +++ b/pygithub3/github.py @@ -2,7 +2,7 @@ # -*- encoding: utf-8 -*- from pygithub3.services.users import User -from pygithub3.services.repos import Repo +from pygithub3.services.repos import Repos class Github(object): @@ -17,7 +17,7 @@ class Github(object): def __init__(self, **config): self._users = User(**config) - self._repos = Repo(**config) + self._repos = Repos(**config) @property def users(self): |