diff options
author | 2012-03-01 13:12:00 +0100 | |
---|---|---|
committer | 2012-03-01 13:12:00 +0100 | |
commit | 397238b404a66ba25aec1e4d7902e16104eddefc (patch) | |
tree | 7453341e1e3257282cf5d87285b451b6fc13ec23 /pygithub3/github.py | |
parent | Services.repos.Repo doc (diff) | |
download | python-github3-397238b404a66ba25aec1e4d7902e16104eddefc.tar.xz python-github3-397238b404a66ba25aec1e4d7902e16104eddefc.zip |
Restructure modules and packages in a clean way
The docs has increased lines of code, so I split it
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): |