diff options
| author | 2012-03-03 11:07:31 +0100 | |
|---|---|---|
| committer | 2012-03-03 11:07:31 +0100 | |
| commit | 221aae624d8a32e801268d2ea5866e885bd3b042 (patch) | |
| tree | 788fdb1cf95199bf9d6e7ee3429b3bcf73251942 /pygithub3/services/repos/__init__.py | |
| parent | Add Manifest (diff) | |
| download | python-github3-221aae624d8a32e801268d2ea5866e885bd3b042.tar.xz python-github3-221aae624d8a32e801268d2ea5866e885bd3b042.zip | |
Service repos done
+repos.hooks
Diffstat (limited to 'pygithub3/services/repos/__init__.py')
| -rw-r--r-- | pygithub3/services/repos/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pygithub3/services/repos/__init__.py b/pygithub3/services/repos/__init__.py index 6695265..df029e8 100644 --- a/pygithub3/services/repos/__init__.py +++ b/pygithub3/services/repos/__init__.py @@ -8,6 +8,7 @@ from .downloads import Downloads from .forks import Forks from .keys import Keys from .watchers import Watchers +from .hooks import Hooks class Repos(Service): @@ -20,6 +21,7 @@ class Repos(Service): self.forks = Forks(**config) self.keys = Keys(**config) self.watchers = Watchers(**config) + self.hooks = Hooks(**config) super(Repos, self).__init__(**config) def list(self, user=None, type='all'): |
