diff --git a/pyfivetran/shed.py b/pyfivetran/shed.py index 822e3b7..8d8f950 100644 --- a/pyfivetran/shed.py +++ b/pyfivetran/shed.py @@ -11,7 +11,7 @@ class GeneralApiResponse(TypedDict): data: Optional[Dict[str, Any]] class ApiError(Exception): - def __inti__(self, msg: str): + def __init__(self, msg: str): self.msg = msg def __str__(self): diff --git a/pyproject.toml b/pyproject.toml index ed0e374..5795fa3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyfivetran" -version = "2024.03.04.03" +version = "2024.03.05.01" description = "Pythonic interface to the fivetran API" authors = ["Khari Gardner "] license = "MIT"