Compare commits
No commits in common. "7a3e2e5e07eac644492b4329ca765956e3d2b501" and "c035065afcb136f2b736c8b1e143c8c35c5a488b" have entirely different histories.
7a3e2e5e07
...
c035065afc
3 changed files with 1 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,7 +1,6 @@
|
|||
# created by virtualenv automatically
|
||||
bin/
|
||||
lib/
|
||||
__pycache__
|
||||
pyvenv.cfg
|
||||
.env
|
||||
session.txt
|
||||
|
|
|
@ -8,12 +8,7 @@ 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
|
Loading…
Reference in a new issue