From 28f82fed5a61e4ac90eb4095000a19c191ca0b78 Mon Sep 17 00:00:00 2001 From: Khari Gardner Date: Tue, 5 Mar 2024 21:54:07 -0500 Subject: [PATCH 1/2] fixed API error initialization method --- pyfivetran/shed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): From ba059f7b45d4a0a2df89ef93948e55f222330266 Mon Sep 17 00:00:00 2001 From: Khari Gardner Date: Tue, 5 Mar 2024 21:54:29 -0500 Subject: [PATCH 2/2] version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"