Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pipedrive/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand All @@ -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("/"):
Expand Down