Compare commits
No commits in common. "8158c727bcdd889607a61312ad5320523471beb4" and "dcd119db86dc5e8dfbfb9d92df1d5585c791a641" have entirely different histories.
8158c727bc
...
dcd119db86
10
tweetbot.py
10
tweetbot.py
|
@ -8,11 +8,11 @@ from time import sleep
|
||||||
from random import shuffle
|
from random import shuffle
|
||||||
|
|
||||||
|
|
||||||
def get_arguments() -> Tuple[bytes, bytes, bytes, bytes]:
|
def get_arguments() -> Tuple[str, str, str, str]:
|
||||||
consumer_key = os.environ['CONSUMER_KEY'].encode('utf8')
|
consumer_key = os.environ['CONSUMER_KEY']
|
||||||
consumer_secret = os.environ['CONSUMER_SECRET'].encode('utf8')
|
consumer_secret = os.environ['CONSUMER_SECRET']
|
||||||
access_token = os.environ['ACCESS_TOKEN'].encode('utf8')
|
access_token = os.environ['ACCESS_TOKEN']
|
||||||
access_token_secret = os.environ['ACCESS_TOKEN_SECRET'].encode('utf8')
|
access_token_secret = os.environ['ACCESS_TOKEN_SECRET']
|
||||||
|
|
||||||
return consumer_key, consumer_secret, access_token, access_token_secret
|
return consumer_key, consumer_secret, access_token, access_token_secret
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue