refactor: enforce BasedPyright strict type checking (#5158)

This commit is contained in:
chengyongru
2026-07-29 21:37:11 +08:00
committed by GitHub
parent e703481755
commit 757ad9c764
166 changed files with 4728 additions and 2621 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ from __future__ import annotations
from collections.abc import Callable
from pathlib import Path
from watchfiles import Change, awatch
from watchfiles import Change, awatch # pyright: ignore[reportUnknownVariableType]
async def watch_config_file(config_path: Path, on_change: Callable[[], None]) -> None: