Update main.py

I believe this fixes an eror.
pull/489/head
Jason 2 years ago committed by GitHub
parent c579298530
commit b36d59698d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,6 +36,7 @@ Load .env file if exists. If it doesnt exist, print a warning and launch the set
If there is a .env file, check if the required variables are set. If not, print a warning and launch the setup wizard.
"""
load_dotenv()
client_id = os.getenv("REDDIT_CLIENT_ID")
client_secret = os.getenv("REDDIT_CLIENT_SECRET")
@ -43,7 +44,6 @@ username = os.getenv("REDDIT_USERNAME")
password = os.getenv("REDDIT_PASSWORD")
reddit2fa = os.getenv("REDDIT_2FA")
load_dotenv()
console.log("[bold green]Checking environment variables...")
time.sleep(1)

Loading…
Cancel
Save