diff options
author | 2012-02-03 14:45:32 +0100 | |
---|---|---|
committer | 2012-02-03 14:46:54 +0100 | |
commit | f01bc94a33d8644da65b5fa895c222e9ee057b50 (patch) | |
tree | 3bfc837901a54f97a30f1d24431d8322906de192 /github3/core/resources/user/user.py | |
parent | Pypi environment by setuptools (diff) | |
download | python-github3-f01bc94a33d8644da65b5fa895c222e9ee057b50.tar.xz python-github3-f01bc94a33d8644da65b5fa895c222e9ee057b50.zip |
Fix imports to new environment
Absolute imports as PEP8 tells
Diffstat (limited to 'github3/core/resources/user/user.py')
-rw-r--r-- | github3/core/resources/user/user.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/github3/core/resources/user/user.py b/github3/core/resources/user/user.py deleted file mode 100644 index 4308f01..0000000 --- a/github3/core/resources/user/user.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python -# -*- encoding: utf-8 -*- - -from . import Resource -from models.user import User - -__all__ = ('Get', 'Update') - -class Get(Resource): - - model = User - - def validate(self): - pass - - def set_uri(self): - if self.user: - return 'users/%s' % self.user - else: - return 'user' - -class Update(Resource): - pass |