aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/resources/orgs.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygithub3/resources/orgs.py')
-rw-r--r--pygithub3/resources/orgs.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pygithub3/resources/orgs.py b/pygithub3/resources/orgs.py
index a79395d..6e2d39b 100644
--- a/pygithub3/resources/orgs.py
+++ b/pygithub3/resources/orgs.py
@@ -18,3 +18,9 @@ class Team(Resource):
def __str__(self):
return '<Team (%s)>' % getattr(self, 'name', '')
+
+
+class Member(Resource):
+
+ def __str__(self):
+ return '<TeamMember (%s)>' % getattr(self, 'login', '')