diff options
author | 2012-02-17 07:32:19 +0100 | |
---|---|---|
committer | 2012-02-17 07:32:19 +0100 | |
commit | c99a6c5be7f418726bc9ee233379357c6e5b0294 (patch) | |
tree | ff4f2c9a13e86767850bd536c2298d32d63028d5 /pygithub3/services/base.py | |
parent | Repos collaborators added (diff) | |
download | python-github3-c99a6c5be7f418726bc9ee233379357c6e5b0294.tar.xz python-github3-c99a6c5be7f418726bc9ee233379357c6e5b0294.zip |
Services' renaming: base.Base to base.Service
Diffstat (limited to 'pygithub3/services/base.py')
-rw-r--r-- | pygithub3/services/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/services/base.py b/pygithub3/services/base.py index 3c81f84..a8c7258 100644 --- a/pygithub3/services/base.py +++ b/pygithub3/services/base.py @@ -7,7 +7,7 @@ from pygithub3.requests import Factory from pygithub3.core.errors import NotFound -class Base(object): +class Service(object): def __init__(self, **config): self._client = Client(**config) |