diff options
author | John L. Villalovos <john@sodarock.com> | 2021-11-24 17:43:46 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-11-24 20:41:36 -0800 |
commit | 308210b3dee15c844cd5db4ddd8c7404bb188990 (patch) | |
tree | 4df88a7a967e209afcf2efea9efc5fd8be358128 /gitlab/__init__.py | |
parent | ab82fd84ba3cecf766915112dcb46fdfab383e73 (diff) | |
download | gitlab-jlvillal/mypy_strict.tar.gz |
WIP: work on enable mypy 'strict' modejlvillal/mypy_strict
Diffstat (limited to 'gitlab/__init__.py')
-rw-r--r-- | gitlab/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 7b79f22..34f6619 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -32,3 +32,7 @@ from gitlab.const import * # noqa: F401,F403 from gitlab.exceptions import * # noqa: F401,F403 warnings.filterwarnings("default", category=DeprecationWarning, module="^gitlab") + +__all__ = [ + "Gitlab", +] |