We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc1acf commit 208cc98Copy full SHA for 208cc98
1 file changed
pubnub/pnconfiguration.py
@@ -15,7 +15,7 @@ class PNConfiguration(object):
15
_locked = False
16
17
def __init__(self,
18
- subscriber_key: str | None = None,
+ subscribe_key: str | None = None,
19
publish_key: str | None = None,
20
uuid: str | None = None):
21
# TODO: add validation
@@ -25,7 +25,7 @@ def __init__(self,
25
self.non_subscribe_request_timeout = 10
26
self.subscribe_request_timeout = 310
27
self.connect_timeout = 10
28
- self.subscribe_key = subscriber_key
+ self.subscribe_key = subscribe_key
29
self.publish_key = publish_key
30
self.secret_key = None
31
self.cipher_key = None
0 commit comments