diff --git a/.github/type_check.py b/.github/type_check.py index 983db9c9bd..db9595817a 100644 --- a/.github/type_check.py +++ b/.github/type_check.py @@ -4,7 +4,7 @@ import sys config = Path(__file__).parent / "pyright-config.json" -command = ("pyright", "-p", str(config)) +command: int = ("pyright", "-p", str(config)) print(" ".join(command)) try: