🏗️' move script to module folder
All checks were successful
Python formatting PEP8 / Python-PEP8 (push) Successful in 17s

This commit is contained in:
Finn Christiansen 2024-06-12 21:34:08 +02:00
parent 91df6f9bb2
commit 7a3e2e5e07
2 changed files with 6 additions and 1 deletions

View file

View file

@ -8,7 +8,12 @@ from dotenv import load_dotenv
load_dotenv()
creds = botlib.Creds(os.getenv("BOT_HOMESERVER"), os.getenv("BOT_USERNAME"), os.getenv("BOT_PASSWORD"))
creds = botlib.Creds(
os.getenv("BOT_HOMESERVER"),
os.getenv("BOT_USERNAME"),
os.getenv("BOT_PASSWORD")
)
bot = botlib.Bot(creds)
PREFIX = '!'
utc = pytz.UTC