More linting
This commit is contained in:
parent
f84ea3fa3c
commit
c29ae10978
1 changed files with 8 additions and 2 deletions
10
src/main.py
10
src/main.py
|
@ -1,7 +1,13 @@
|
|||
"""
|
||||
Tom Servo Bot - Main
|
||||
|
||||
The main executable module.
|
||||
"""
|
||||
|
||||
import logging
|
||||
|
||||
from decouple import config
|
||||
from niobot import Context, NioBot, SyncResponse
|
||||
from decouple import config # type: ignore
|
||||
from niobot import Context, NioBot, SyncResponse # type: ignore
|
||||
|
||||
|
||||
DEBUG = config("DEBUG", default=False, cast=bool)
|
||||
|
|
Loading…
Reference in a new issue