fix(fake): rename prompt to _prompt, drop noqa suppression

This commit is contained in:
2026-04-30 21:18:55 -04:00
parent a8c69155ff
commit 2629a8a0de

View File

@@ -38,7 +38,7 @@ class FakeBackend(LLMBackend):
)
self._success = success
async def generate(self, prompt: str) -> LLMResult: # noqa: ARG002
async def generate(self, _prompt: str) -> LLMResult:
t0 = time.monotonic()
latency_ms = int((time.monotonic() - t0) * 1000)
return LLMResult(