[kimi] Fix GITEA_API configuration in triage scripts (#951) (#994)

This commit is contained in:
2026-03-22 22:28:23 +00:00
parent e255e7eb2a
commit 1fa5cff5dc
11 changed files with 84 additions and 45 deletions

View File

@@ -27,14 +27,14 @@ class WorldInterface(ABC):
# -- lifecycle (optional overrides) ------------------------------------
def connect(self) -> None:
def connect(self) -> None: # noqa: B027
"""Establish connection to the game world.
Default implementation is a no-op. Override to open sockets,
authenticate, etc.
"""
def disconnect(self) -> None:
def disconnect(self) -> None: # noqa: B027
"""Tear down the connection.
Default implementation is a no-op.