diff --git a/pipedrive/client.py b/pipedrive/client.py index a56bc47..ccae978 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/" @@ -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("/"):