Formatting

This commit is contained in:
Firepup Sixfifty 2023-11-07 21:23:59 -06:00
parent 8cf9154218
commit 6626781dff
Signed by: Firepup650
GPG key ID: 7C92E2ABBBFAB9BA
2 changed files with 17 additions and 11 deletions

View file

@ -113,7 +113,13 @@ def eball(bot, chan: str, name: str, message: str) -> None:
def debug(bot, chan: str, name: str, message: str) -> None:
dbg_out = {"VERSION": bot.__version__, "NICKLEN": bot.nicklen, "NICK": bot.nick, "ADMINS": bot.adminnames, "CHANNELS": bot.channels}
dbg_out = {
"VERSION": bot.__version__,
"NICKLEN": bot.nicklen,
"NICK": bot.nick,
"ADMINS": bot.adminnames,
"CHANNELS": bot.channels,
}
bot.msg(f"[DEBUG] {dbg_out}", chan)