diff --git a/pyproject.toml b/pyproject.toml index 16db8a5..a6cbc93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -168,7 +168,7 @@ show_error_codes = true # # We also exclude our `tests` as mypy doesn't always infer # types correctly and Pyright will still catch any type errors. -exclude = ["src/hubspot_sdk/_files.py", "_dev/.*.py", "tests/.*"] +exclude = ["src/hubspot_sdk/_files.py", "_dev/.*.py", "tests/.*", "src/hubspot_sdk/types/.*"] strict_equality = true implicit_reexport = true diff --git a/scripts/lint b/scripts/lint index 9ddbd0f..5f717eb 100755 --- a/scripts/lint +++ b/scripts/lint @@ -11,6 +11,3 @@ else echo "==> Running lints" rye run lint fi - -echo "==> Making sure it imports" -rye run python -c 'import hubspot_sdk'