aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services
diff options
context:
space:
mode:
Diffstat (limited to 'pygithub3/services')
-rw-r--r--pygithub3/services/repos/__init__.py2
-rw-r--r--pygithub3/services/users/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/services/repos/__init__.py b/pygithub3/services/repos/__init__.py
index 484dd49..6695265 100644
--- a/pygithub3/services/repos/__init__.py
+++ b/pygithub3/services/repos/__init__.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
-from ..base import Service, MimeTypeMixin
+from pygithub3.services.base import Service, MimeTypeMixin
from .collaborators import Collaborators
from .commits import Commits
from .downloads import Downloads
diff --git a/pygithub3/services/users/__init__.py b/pygithub3/services/users/__init__.py
index 29a8e1c..fa93ca2 100644
--- a/pygithub3/services/users/__init__.py
+++ b/pygithub3/services/users/__init__.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
-from ..base import Service
+from pygithub3.services.base import Service
from .keys import Keys
from .emails import Emails
from .followers import Followers