diff options
| author | John L. Villalovos <john@sodarock.com> | 2021-04-17 14:20:05 -0700 |
|---|---|---|
| committer | John L. Villalovos <john@sodarock.com> | 2021-04-18 08:24:40 -0700 |
| commit | ff21eb664871904137e6df18308b6e90290ad490 (patch) | |
| tree | 27d27ca27dd6aad41de74fa4fcf2a1c93b29bd24 /gitlab/v4/objects/issues.py | |
| parent | 630901b30911af01da5543ca609bd27bc5a1a44c (diff) | |
| download | gitlab-ff21eb664871904137e6df18308b6e90290ad490.tar.gz | |
chore: fix F401 errors reported by flake8
F401: Module imported but unused
https://www.flake8rules.com/rules/F401.html
Diffstat (limited to 'gitlab/v4/objects/issues.py')
| -rw-r--r-- | gitlab/v4/objects/issues.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gitlab/v4/objects/issues.py b/gitlab/v4/objects/issues.py index 4da7f91..1854eb3 100644 --- a/gitlab/v4/objects/issues.py +++ b/gitlab/v4/objects/issues.py @@ -15,13 +15,13 @@ from gitlab.mixins import ( TodoMixin, UserAgentDetailMixin, ) -from .award_emojis import ProjectIssueAwardEmojiManager -from .discussions import ProjectIssueDiscussionManager -from .events import ( +from .award_emojis import ProjectIssueAwardEmojiManager # noqa: F401 +from .discussions import ProjectIssueDiscussionManager # noqa: F401 +from .events import ( # noqa: F401 ProjectIssueResourceLabelEventManager, ProjectIssueResourceMilestoneEventManager, ) -from .notes import ProjectIssueNoteManager +from .notes import ProjectIssueNoteManager # noqa: F401 __all__ = [ |
