diff --git a/src/pyhuntress/__init__.py b/src/pyhuntress/__init__.py index 3619c51..dd9b8b7 100644 --- a/src/pyhuntress/__init__.py +++ b/src/pyhuntress/__init__.py @@ -2,4 +2,4 @@ from pyhuntress.clients.managedsat_client import HuntressSATAPIClient from pyhuntress.clients.siem_client import HuntressSIEMAPIClient __all__ = ["HuntressSATAPIClient", "HuntressSIEMAPIClient"] -__version__ = "0.6.1" +__version__ = "0.1.1" diff --git a/src/pyhuntress/config.py b/src/pyhuntress/config.py index bd1f4d7..e9c2435 100644 --- a/src/pyhuntress/config.py +++ b/src/pyhuntress/config.py @@ -1,5 +1,5 @@ class Config: - def __init__(self, max_retries=3) -> None: # noqa: ANN001 + def __init__(self, max_retries=3) -> None: """ Initializes a new instance of the Config class. diff --git a/src/pyhuntress/exceptions.py b/src/pyhuntress/exceptions.py index a0d5836..e5b8f49 100644 --- a/src/pyhuntress/exceptions.py +++ b/src/pyhuntress/exceptions.py @@ -5,7 +5,7 @@ from urllib.parse import urlsplit, urlunsplit from requests import JSONDecodeError, Response -class HuntressException(Exception): # noqa: N818 +class HuntressException(Exception): _code_explanation: ClassVar[str] = "" # Ex: for 404 "Not Found" _error_suggestion: ClassVar[str] = "" # Ex: for 404 "Check the URL you are using is correct"