From 52b4a5db0be700fe6b48bfe1e0bda2bd86294db7 Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Tue, 24 Apr 2012 10:42:25 +0200 Subject: Add Teams Service --- pygithub3/services/orgs/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pygithub3/services/orgs/__init__.py') 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): -- cgit v1.2.3-59-g8ed1b