Include server examples folder in pyright check (#667)

This commit is contained in:
ihrpr
2025-05-15 09:29:36 +01:00
committed by GitHub
parent 0a388b642f
commit b3fbee9c48
8 changed files with 15 additions and 10 deletions

View File

@@ -1,4 +1,7 @@
from .server import main
if __name__ == "__main__":
main()
# Click will handle CLI arguments
import sys
sys.exit(main()) # type: ignore[call-arg]