From 2617d17e28786868647dcb28cbe1b5e67c6e6f31 Mon Sep 17 00:00:00 2001 From: shokollm <270575765+shokollm@users.noreply.github.com> Date: Sat, 4 Apr 2026 17:52:47 +0700 Subject: [PATCH] feat: remove "by user" from bounty list display Removes created_by_user_id from format_bounty() output. Fixes #55 --- apps/telegram-bot/commands.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/telegram-bot/commands.py b/apps/telegram-bot/commands.py index 8a2b818..ae66faa 100644 --- a/apps/telegram-bot/commands.py +++ b/apps/telegram-bot/commands.py @@ -105,8 +105,6 @@ def format_bounty(b, show_id: bool = True, slice_length: int = 0) -> str: parts.append(f"⏰ Today (OVERDUE)") else: parts.append(f"⏰ {due_str} ({days_left}d)") - if b.created_by_user_id: - parts.append(f"by {b.created_by_user_id}") return " | ".join(parts)