Skip to content

Commit f6af564

Browse files
committed
add type hints for all methods - helps with documentation of inputs and IDE auto-complete
1 parent c9f01bf commit f6af564

File tree

3 files changed

+197
-74
lines changed

3 files changed

+197
-74
lines changed

jupiterone/__init__.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
from .client import JupiterOneClient
22
from .errors import (
33
JupiterOneClientError,
4-
JupiterOneApiError
4+
JupiterOneApiError,
5+
JupiterOneApiRetryError
56
)
7+
8+
__all__ = [
9+
"JupiterOneClient",
10+
"JupiterOneClientError",
11+
"JupiterOneApiError",
12+
"JupiterOneApiRetryError"
13+
]

0 commit comments

Comments
 (0)