More linting

This commit is contained in:
Josh W 2024-07-12 23:07:09 -04:00
parent f84ea3fa3c
commit c29ae10978

View file

@ -1,7 +1,13 @@
"""
Tom Servo Bot - Main
The main executable module.
"""
import logging import logging
from decouple import config from decouple import config # type: ignore
from niobot import Context, NioBot, SyncResponse from niobot import Context, NioBot, SyncResponse # type: ignore
DEBUG = config("DEBUG", default=False, cast=bool) DEBUG = config("DEBUG", default=False, cast=bool)