From a39f1114fd76d49c3653f3ba5648ece6191105d3 Mon Sep 17 00:00:00 2001 From: Huy Ngo Date: Thu, 25 Jul 2024 10:37:59 +0700 Subject: [PATCH] Add bot indicator --- witchie/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/witchie/output.py b/witchie/output.py index dccb8ae..259a9af 100644 --- a/witchie/output.py +++ b/witchie/output.py @@ -171,7 +171,7 @@ def print_instance(instance: Instance): def print_account(account: Account): - print_out(f"@{account.acct} {account.display_name}") + print_out(("[BOT] " if account.bot else "") + f"@{account.acct} {account.display_name}") if account.note: print_out("")