Compare commits

..

No commits in common. "8158c727bcdd889607a61312ad5320523471beb4" and "dcd119db86dc5e8dfbfb9d92df1d5585c791a641" have entirely different histories.

1 changed files with 5 additions and 5 deletions

View File

@ -8,11 +8,11 @@ from time import sleep
from random import shuffle
def get_arguments() -> Tuple[bytes, bytes, bytes, bytes]:
consumer_key = os.environ['CONSUMER_KEY'].encode('utf8')
consumer_secret = os.environ['CONSUMER_SECRET'].encode('utf8')
access_token = os.environ['ACCESS_TOKEN'].encode('utf8')
access_token_secret = os.environ['ACCESS_TOKEN_SECRET'].encode('utf8')
def get_arguments() -> Tuple[str, str, str, str]:
consumer_key = os.environ['CONSUMER_KEY']
consumer_secret = os.environ['CONSUMER_SECRET']
access_token = os.environ['ACCESS_TOKEN']
access_token_secret = os.environ['ACCESS_TOKEN_SECRET']
return consumer_key, consumer_secret, access_token, access_token_secret