diff options
Diffstat (limited to 'pygithub3/models/users.py')
-rw-r--r-- | pygithub3/models/users.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/models/users.py b/pygithub3/models/users.py index 0ceef90..c94a704 100644 --- a/pygithub3/models/users.py +++ b/pygithub3/models/users.py @@ -15,8 +15,8 @@ class Plan(Model): class User(Model): """ """ - maps = {'plan': Plan} - dates = ('created_at', ) + _maps = {'plan': Plan} + _dates = ('created_at', ) def __str__(self): return '<User (%s)>' % getattr(self, 'login', '') |