diff options
author | 2012-04-24 01:04:53 +0200 | |
---|---|---|
committer | 2012-04-24 01:04:53 +0200 | |
commit | 0559014ee5957331d05e857c6a929279837b2e8e (patch) | |
tree | 08e6acdeb5d30e277487467f64baf26e59cab888 /pygithub3/resources/repos.py | |
parent | Baseline Orgs API implementation (diff) | |
download | python-github3-0559014ee5957331d05e857c6a929279837b2e8e.tar.xz python-github3-0559014ee5957331d05e857c6a929279837b2e8e.zip |
Move Team to orgs
Diffstat (limited to 'pygithub3/resources/repos.py')
-rw-r--r-- | pygithub3/resources/repos.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/pygithub3/resources/repos.py b/pygithub3/resources/repos.py index c7ec5e8..f50d694 100644 --- a/pygithub3/resources/repos.py +++ b/pygithub3/resources/repos.py @@ -18,12 +18,6 @@ class Repo(Resource): return '<Repo (%s)>' % getattr(self, 'name', '') -class Team(Resource): - - def __str__(self): - return '<Team (%s)>' % getattr(self, 'name', '') - - class Author(Resource): _dates = ('date') @@ -115,6 +109,7 @@ class Download(Resource): 'Policy': self.policy, 'Signature': self.signature, 'Content-Type': self.mime_type}) + class Hook(Resource): _dates = ('created_at', 'pushed_at') |