aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services/orgs/__init__.py
diff options
context:
space:
mode:
authorStefano Rivera <stefano@rivera.za.net>2012-04-24 10:42:25 +0200
committerStefano Rivera <stefano@rivera.za.net>2012-04-24 10:42:25 +0200
commit52b4a5db0be700fe6b48bfe1e0bda2bd86294db7 (patch)
tree2f914320c4f3813ec8a0058abb189fae822bb4ed /pygithub3/services/orgs/__init__.py
parentAn empty string doesn't work around the 411 issue on PUTs. Use 'PLACEHOLDER' (diff)
downloadpython-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__.py2
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):