diff options
| author | John L. Villalovos <john@sodarock.com> | 2021-05-22 08:55:19 -0700 |
|---|---|---|
| committer | John L. Villalovos <john@sodarock.com> | 2021-05-25 11:54:51 -0700 |
| commit | f3afd34260d681bbeec974b67012b90d407b7014 (patch) | |
| tree | 1e6131c02a5276abf26f72618ec0b0c86fd04ea2 /gitlab/v4/objects/epics.py | |
| parent | dda646e8f2ecb733e37e6cffec331b783b64714e (diff) | |
| download | gitlab-f3afd34260d681bbeec974b67012b90d407b7014.tar.gz | |
chore: fix import ordering using isort
Fix the import ordering using isort.
https://pycqa.github.io/isort/
Diffstat (limited to 'gitlab/v4/objects/epics.py')
| -rw-r--r-- | gitlab/v4/objects/epics.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gitlab/v4/objects/epics.py b/gitlab/v4/objects/epics.py index 023d0a6..4311aa7 100644 --- a/gitlab/v4/objects/epics.py +++ b/gitlab/v4/objects/epics.py @@ -1,17 +1,17 @@ -from gitlab import types from gitlab import exceptions as exc +from gitlab import types from gitlab.base import RequiredOptional, RESTManager, RESTObject from gitlab.mixins import ( - CRUDMixin, CreateMixin, + CRUDMixin, DeleteMixin, ListMixin, ObjectDeleteMixin, SaveMixin, UpdateMixin, ) -from .events import GroupEpicResourceLabelEventManager # noqa: F401 +from .events import GroupEpicResourceLabelEventManager # noqa: F401 __all__ = [ "GroupEpic", |
