Skip to content

Commit

Permalink
fixed API error initialization method
Browse files Browse the repository at this point in the history
  • Loading branch information
kharigardner committed Mar 6, 2024
1 parent 1abe70b commit 28f82fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfivetran/shed.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 28f82fe

Please sign in to comment.