projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5bb773c
)
Change Client initialization parameter to be keyword-only
author
Harmon
<Harmon758@gmail.com>
Fri, 7 May 2021 21:54:35 +0000
(16:54 -0500)
committer
Harmon
<Harmon758@gmail.com>
Fri, 7 May 2021 21:54:35 +0000
(16:54 -0500)
Change wait_on_rate_limit Client initialization parameter to be keyword-only
tweepy/client.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/client.py
b/tweepy/client.py
index 6c338f24074b6995ba91a5d00c9ccf1476ac8336..9b71255853790d31ec4f7873ad4c371e78d0223e 100644
(file)
--- a/
tweepy/client.py
+++ b/
tweepy/client.py
@@
-55,7
+55,7
@@
class Client:
def __init__(self, bearer_token=None, consumer_key=None,
consumer_secret=None, access_token=None,
- access_token_secret=None, wait_on_rate_limit=False):
+ access_token_secret=None,
*,
wait_on_rate_limit=False):
self.bearer_token = bearer_token
self.consumer_key = consumer_key
self.consumer_secret = consumer_secret