🚨 Fix: 修复 ruff lint 错误 (#3346)

This commit is contained in:
Ju4tCode
2025-03-02 12:45:45 +08:00
committed by GitHub
parent bc1b55b952
commit 1694611f48
4 changed files with 185 additions and 48 deletions

View File

@ -33,8 +33,8 @@ async def gen_async():
@dataclass
class ClassDependency:
x: int = Depends(gen_sync) # noqa: RUF009
y: int = Depends(gen_async) # noqa: RUF009
x: int = Depends(gen_sync)
y: int = Depends(gen_async)
class FooBot(Bot): ...