Skip to content

Commit d48a75e

Browse files
drernieclaude
andcommitted
fix: update mypy config to support Python 3.9+ and ignore missing stubs
- Change python_version from 3.8 to 3.9 (mypy requirement) - Add ignore_missing_imports to handle boto3/requests type stubs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 427a387 commit d48a75e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

deploy/pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ line-length = 100
4343
target-version = "py38"
4444

4545
[tool.mypy]
46-
python_version = "3.8"
46+
python_version = "3.9"
4747
warn_return_any = true
4848
warn_unused_configs = true
4949
disallow_untyped_defs = true
50+
# Ignore missing type stubs
51+
ignore_missing_imports = true

0 commit comments

Comments
 (0)