aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/requests/repos/__init__.py
diff options
context:
space:
mode:
authorStefano Rivera <stefano@rivera.za.net>2012-04-24 01:04:53 +0200
committerStefano Rivera <stefano@rivera.za.net>2012-04-24 01:04:53 +0200
commit0559014ee5957331d05e857c6a929279837b2e8e (patch)
tree08e6acdeb5d30e277487467f64baf26e59cab888 /pygithub3/requests/repos/__init__.py
parentBaseline Orgs API implementation (diff)
downloadpython-github3-0559014ee5957331d05e857c6a929279837b2e8e.tar.xz
python-github3-0559014ee5957331d05e857c6a929279837b2e8e.zip
Move Team to orgs
Diffstat (limited to 'pygithub3/requests/repos/__init__.py')
-rw-r--r--pygithub3/requests/repos/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pygithub3/requests/repos/__init__.py b/pygithub3/requests/repos/__init__.py
index cd920fe..7bbcf3e 100644
--- a/pygithub3/requests/repos/__init__.py
+++ b/pygithub3/requests/repos/__init__.py
@@ -1,8 +1,9 @@
# -*- encoding: utf-8 -*-
from pygithub3.requests.base import Request, ValidationError
+from pygithub3.resources.orgs import Team
+from pygithub3.resources.repos import Repo, Tag, Branch
from pygithub3.resources.users import User
-from pygithub3.resources.repos import Repo, Team, Tag, Branch
class List(Request):