Skip to content

Commit dc61206

Browse files
authored
refactor(reviewer-bot): group config imports by role (Safety-Critical-Rust-Consortium#457)
1 parent f541501 commit dc61206

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

scripts/reviewer_bot.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,11 @@
7777
import scripts.reviewer_bot_lib.reviews as reviews_module
7878
import scripts.reviewer_bot_lib.state_store as state_store_module
7979
from scripts.reviewer_bot_lib import app as app_module
80-
from scripts.reviewer_bot_lib.config import ( # noqa: F401
80+
81+
# Exported runtime config surface used by extracted modules and tests.
82+
# Exported runtime types used by extracted modules and tests.
83+
# Internal-only config consumed directly by the entrypoint adapter.
84+
from scripts.reviewer_bot_lib.config import ( # noqa: F401 # noqa: F401
8185
AUTHOR_ASSOCIATION_TRUST_ALLOWLIST,
8286
BOT_MENTION,
8387
BOT_NAME,

0 commit comments

Comments
 (0)