summaryrefslogtreecommitdiff
path: root/gitlab/exceptions.py
diff options
context:
space:
mode:
authorNejc Habjan <nejc.habjan@siemens.com>2022-06-23 21:53:49 +0200
committerJohn Villalovos <john@sodarock.com>2022-06-23 16:15:16 -0700
commit981b8448dbadc63d70867dc069e33d4c4d1cfe95 (patch)
treed6cf6058007bb18325f9bf78af46fa9f3b19e1e1 /gitlab/exceptions.py
parentf0ac3cda2912509d0a3132be8344e41ddcec71ab (diff)
downloadgitlab-981b8448dbadc63d70867dc069e33d4c4d1cfe95.tar.gz
chore(gitlab): fix implicit re-exports for mpypy
Diffstat (limited to 'gitlab/exceptions.py')
-rw-r--r--gitlab/exceptions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py
index 251ef7b..602a452 100644
--- a/gitlab/exceptions.py
+++ b/gitlab/exceptions.py
@@ -322,3 +322,6 @@ def on_http_error(error: Type[Exception]) -> Callable[[__F], __F]:
return cast(__F, wrapped_f)
return wrap
+
+
+__all__ = [name for name in dir() if name.endswith("Error")]