diff options
| author | 2012-02-03 14:45:32 +0100 | |
|---|---|---|
| committer | 2012-02-03 14:46:54 +0100 | |
| commit | f01bc94a33d8644da65b5fa895c222e9ee057b50 (patch) | |
| tree | 3bfc837901a54f97a30f1d24431d8322906de192 /pygithub3/models/users.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 '')
| -rw-r--r-- | pygithub3/models/users.py (renamed from github3/models/user.py) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/github3/models/user.py b/pygithub3/models/users.py index c87afc3..0ceef90 100644 --- a/github3/models/user.py +++ b/pygithub3/models/users.py @@ -1,7 +1,9 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -from base import Model +from .base import Model + +__all__ = ('Plan', 'User') class Plan(Model): |
