diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-06-23 21:53:49 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-06-23 16:15:16 -0700 |
commit | 981b8448dbadc63d70867dc069e33d4c4d1cfe95 (patch) | |
tree | d6cf6058007bb18325f9bf78af46fa9f3b19e1e1 /gitlab/const.py | |
parent | f0ac3cda2912509d0a3132be8344e41ddcec71ab (diff) | |
download | gitlab-981b8448dbadc63d70867dc069e33d4c4d1cfe95.tar.gz |
chore(gitlab): fix implicit re-exports for mpypy
Diffstat (limited to 'gitlab/const.py')
-rw-r--r-- | gitlab/const.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gitlab/const.py b/gitlab/const.py index 033044a..382590d 100644 --- a/gitlab/const.py +++ b/gitlab/const.py @@ -143,3 +143,11 @@ SEARCH_SCOPE_GLOBAL_SNIPPET_TITLES = SearchScope.GLOBAL_SNIPPET_TITLES.value SEARCH_SCOPE_PROJECT_NOTES = SearchScope.PROJECT_NOTES.value USER_AGENT: str = f"{__title__}/{__version__}" + +__all__ = [ + "AccessLevel", + "Visibility", + "NotificationLevel", + "SearchScope", +] +__all__.extend(_DEPRECATED) |