From 49c7d99484b96c6ceab484ffee3cec4787248fa3 Mon Sep 17 00:00:00 2001 From: Kikoriba <94049436+Kikoriba@users.noreply.github.com> Date: Tue, 19 Jul 2022 22:38:28 +0200 Subject: [PATCH 1/2] Update client.py --- pipedrive/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipedrive/client.py b/pipedrive/client.py index a56bc47..1d9febf 100644 --- a/pipedrive/client.py +++ b/pipedrive/client.py @@ -16,7 +16,7 @@ from pipedrive.recents import Recents from pipedrive.users import Users from pipedrive.webhooks import Webhooks - +from pipedrive.stages import Stages class Client: BASE_URL = "https://api.pipedrive.com/" From e8e374b95d4fc7de2664f5d54d3102c3c990fbb0 Mon Sep 17 00:00:00 2001 From: Kikoriba <94049436+Kikoriba@users.noreply.github.com> Date: Tue, 19 Jul 2022 22:39:29 +0200 Subject: [PATCH 2/2] Stages class was forgotten and not added to the client (fixed here) --- pipedrive/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pipedrive/client.py b/pipedrive/client.py index 1d9febf..ccae978 100644 --- a/pipedrive/client.py +++ b/pipedrive/client.py @@ -40,6 +40,7 @@ def __init__(self, client_id=None, client_secret=None, domain=None): self.recents = Recents(self) self.users = Users(self) self.webhooks = Webhooks(self) + self.stages = Stages(self) if domain: if not domain.endswith("/"):