order imports
This commit is contained in:
parent
46037106e6
commit
36792c1949
1 changed files with 8 additions and 6 deletions
14
main.py
14
main.py
|
@ -1,11 +1,13 @@
|
||||||
from dotenv import load_dotenv
|
|
||||||
from os import environ
|
|
||||||
from tweepy import StreamingClient, Client, StreamRule, Tweet
|
|
||||||
from re import sub, findall
|
|
||||||
from random import choice
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from pytz import timezone
|
|
||||||
from json import loads
|
from json import loads
|
||||||
|
from os import environ
|
||||||
|
from random import choice
|
||||||
|
from re import findall, sub
|
||||||
|
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
from pytz import timezone
|
||||||
|
from tweepy import Client, StreamingClient, StreamRule, Tweet
|
||||||
|
|
||||||
|
|
||||||
def load(variables) -> dict:
|
def load(variables) -> dict:
|
||||||
"""Load environment variables"""
|
"""Load environment variables"""
|
||||||
|
|
Reference in a new issue