diff options
| author | 2012-04-24 10:42:25 +0200 | |
|---|---|---|
| committer | 2012-04-24 10:42:25 +0200 | |
| commit | 52b4a5db0be700fe6b48bfe1e0bda2bd86294db7 (patch) | |
| tree | 2f914320c4f3813ec8a0058abb189fae822bb4ed /pygithub3/services/orgs/__init__.py | |
| parent | An empty string doesn't work around the 411 issue on PUTs. Use 'PLACEHOLDER' (diff) | |
| download | python-github3-52b4a5db0be700fe6b48bfe1e0bda2bd86294db7.tar.xz python-github3-52b4a5db0be700fe6b48bfe1e0bda2bd86294db7.zip | |
Add Teams Service
Diffstat (limited to 'pygithub3/services/orgs/__init__.py')
| -rw-r--r-- | pygithub3/services/orgs/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pygithub3/services/orgs/__init__.py b/pygithub3/services/orgs/__init__.py index 6a75081..8499719 100644 --- a/pygithub3/services/orgs/__init__.py +++ b/pygithub3/services/orgs/__init__.py @@ -2,6 +2,7 @@ from pygithub3.services.base import Service from .members import Members +from .teams import Teams class Org(Service): @@ -9,6 +10,7 @@ class Org(Service): def __init__(self, **config): self.members = Members(**config) + self.teams = Teams(**config) super(Org, self).__init__(**config) def list(self, user=None): |
