diff options
| author | Nejc Habjan <hab.nejc@gmail.com> | 2021-02-25 19:16:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-25 19:16:53 +0100 |
| commit | 0b67ca29d2cc6177e330b91519fdf54b05621769 (patch) | |
| tree | 1af1374b5219e3b9a3c0c1eba590097a4a2c6312 /gitlab/v4/objects/discussions.py | |
| parent | e06c51bcf29492dbc7ef838c35f6ef86a79af261 (diff) | |
| parent | c83eaf4f395300471311a67be34d8d306c2b3861 (diff) | |
| download | gitlab-0b67ca29d2cc6177e330b91519fdf54b05621769.tar.gz | |
Merge pull request #1319 from JohnVillalovos/jlvillal/import_star
chore: remove usage of 'from ... import *'
Diffstat (limited to 'gitlab/v4/objects/discussions.py')
| -rw-r--r-- | gitlab/v4/objects/discussions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/v4/objects/discussions.py b/gitlab/v4/objects/discussions.py index e9a12b3..b65c27b 100644 --- a/gitlab/v4/objects/discussions.py +++ b/gitlab/v4/objects/discussions.py @@ -1,5 +1,5 @@ -from gitlab.base import * # noqa -from gitlab.mixins import * # noqa +from gitlab.base import RESTManager, RESTObject +from gitlab.mixins import CreateMixin, RetrieveMixin, SaveMixin, UpdateMixin from .notes import ( ProjectCommitDiscussionNoteManager, ProjectIssueDiscussionNoteManager, |
