Enabled all Ruff lint rules and resolved findings with justified inline suppressions.
CI / Formatting (push) Successful in 5s
CI / Linting (push) Successful in 5s
CI / Tests (Python 3.12) (push) Successful in 14s
CI / Tests (Python 3.13) (push) Successful in 14s
CI / Tests (Python 3.14) (push) Successful in 11s
CI / Type Checking (push) Successful in 10s
CI / Spelling (push) Successful in 5s

This commit is contained in:
2026-04-13 15:31:06 -04:00
parent b68c717845
commit 0ff3c7a6b4
44 changed files with 452 additions and 430 deletions
+5 -4
View File
@@ -40,7 +40,7 @@ class CommandMark(TypedDict):
aliases: list[str] | tuple[str, ...] | None
requires_authenticated: bool
requires_moderator: bool
cooldown: int | float
cooldown: int
@dataclass(frozen=True, slots=True)
@@ -67,7 +67,7 @@ class CommandInfo:
aliases: frozenset[str] = field(default_factory=frozenset)
requires_authenticated: bool = False
requires_moderator: bool = False
cooldown: int | float = 0
cooldown: int = 0
all_triggers: frozenset[str] = field(init=False, repr=False)
def __post_init__(self) -> None:
@@ -81,7 +81,7 @@ def on_command(
aliases: list[str] | tuple[str, ...] | None = None,
requires_authenticated: bool = False,
requires_moderator: bool = False,
cooldown: int | float = 0,
cooldown: int = 0,
) -> Callable[[CommandHandler], CommandHandler]:
"""Register a command handler.
@@ -97,7 +97,8 @@ def on_command(
def decorator(func: CommandHandler) -> CommandHandler:
# Mark the function with command info for deferred registration.
# The module loader will scan for this attribute and register commands.
func._owlbot_command = CommandMark( # type: ignore[attr-defined]
# Framework decorator marker; private to module authors.
func._owlbot_command = CommandMark( # type: ignore[attr-defined] # noqa: SLF001
name=name,
aliases=aliases,
requires_authenticated=requires_authenticated,