diff options
Diffstat (limited to 'pygithub3/resources/orgs.py')
-rw-r--r-- | pygithub3/resources/orgs.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/pygithub3/resources/orgs.py b/pygithub3/resources/orgs.py index 3996172..6e2d39b 100644 --- a/pygithub3/resources/orgs.py +++ b/pygithub3/resources/orgs.py @@ -11,4 +11,16 @@ class Org(Resource): _dates = ('created_at', ) def __str__(self): - return '<Org (%s)>' % getattr(self, 'name', '') + return '<Org (%s)>' % getattr(self, 'login', '') + + +class Team(Resource): + + def __str__(self): + return '<Team (%s)>' % getattr(self, 'name', '') + + +class Member(Resource): + + def __str__(self): + return '<TeamMember (%s)>' % getattr(self, 'login', '') |