aboutsummaryrefslogtreecommitdiffstats
path: root/github3/models/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'github3/models/user.py')
-rw-r--r--github3/models/user.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/github3/models/user.py b/github3/models/user.py
deleted file mode 100644
index c87afc3..0000000
--- a/github3/models/user.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env python
-# -*- encoding: utf-8 -*-
-
-from base import Model
-
-
-class Plan(Model):
-
- def __str__(self):
- return '<Plan (%s)>' % getattr(self, 'name', '')
-
-
-class User(Model):
- """ """
-
- maps = {'plan': Plan}
- dates = ('created_at', )
-
- def __str__(self):
- return '<User (%s)>' % getattr(self, 'login', '')