Stricter mypy rules for skyvern.library.* (#4345)

This commit is contained in:
Stanislav Novosad
2025-12-19 13:37:03 -07:00
committed by GitHub
parent 9788138861
commit dfcf4913e9
2 changed files with 12 additions and 2 deletions

View File

@@ -6,5 +6,15 @@ disallow_untyped_defs = True
exclude = ^(venv|venv-dev)
ignore_missing_imports = True
[mypy-skyvern.library.*]
ignore_missing_imports = False
follow_imports = normal
disable_error_code = arg-type, override, return-value, valid-type, no-any-return
; Disabling for generated code
[mypy-skyvern.client.*]
follow_imports = normal
ignore_errors = True
[mypy-numpy.*]
ignore_errors = True