From c7375051fd3b0afb5a9e825c7dc6cd7d6063cacc Mon Sep 17 00:00:00 2001 From: claude Date: Mon, 20 Jul 2026 20:11:04 +0000 Subject: [PATCH] fix(lint): mark read_tty_line as an explicit re-export in _common.py Pyright reportUnusedImport fired because the bare import is not used within _common.py itself. The X as X idiom signals an intentional public re-export without requiring __all__. --- bot_bottle/cli/_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot_bottle/cli/_common.py b/bot_bottle/cli/_common.py index c8d52bd..5fc6c33 100644 --- a/bot_bottle/cli/_common.py +++ b/bot_bottle/cli/_common.py @@ -5,7 +5,7 @@ from __future__ import annotations import os from pathlib import Path -from ..util import read_tty_line +from ..util import read_tty_line as read_tty_line PROG = "cli.py" USER_CWD = os.getcwd()