summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/notes.py
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2022-01-03 22:11:46 -0800
committerJohn L. Villalovos <john@sodarock.com>2022-01-03 22:11:46 -0800
commit6b3e7c0f5f77baed94cc807b7087feaaf0fac121 (patch)
treea9d8d3b3f04b072e6707f775861e1835e94afc8d /gitlab/v4/objects/notes.py
parent789122d5df9b4f39331e23c7fdb6e9021e7836cf (diff)
downloadgitlab-jlvillal/relative_imports.tar.gz
chore: convert to using relative importsjlvillal/relative_imports
Switch to using relative imports to ensure that we are importing from within our library. Also use the form: from foo import bar as bar When we want to signify that we want the import to be re-exported. https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-no-implicit-reexport
Diffstat (limited to 'gitlab/v4/objects/notes.py')
-rw-r--r--gitlab/v4/objects/notes.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/gitlab/v4/objects/notes.py b/gitlab/v4/objects/notes.py
index 833f632..e5526fc 100644
--- a/gitlab/v4/objects/notes.py
+++ b/gitlab/v4/objects/notes.py
@@ -1,7 +1,7 @@
from typing import Any, cast, Union
-from gitlab.base import RequiredOptional, RESTManager, RESTObject
-from gitlab.mixins import (
+from ...base import RequiredOptional, RESTManager, RESTObject
+from ...mixins import (
CreateMixin,
CRUDMixin,
DeleteMixin,
@@ -11,7 +11,6 @@ from gitlab.mixins import (
SaveMixin,
UpdateMixin,
)
-
from .award_emojis import ( # noqa: F401
GroupEpicNoteAwardEmojiManager,
ProjectIssueNoteAwardEmojiManager,