enable secret key rotation

This commit is contained in:
David Lord 2024-11-08 08:09:01 -08:00
parent 7522c4bcdb
commit e13373f838
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
9 changed files with 55 additions and 7 deletions

View file

@ -79,7 +79,7 @@ source = ["src", "*/site-packages"]
[tool.mypy]
python_version = "3.9"
files = ["src/flask", "tests/typing"]
files = ["src/flask", "tests/type_check"]
show_error_codes = true
pretty = true
strict = true
@ -95,7 +95,7 @@ ignore_missing_imports = true
[tool.pyright]
pythonVersion = "3.9"
include = ["src/flask", "tests/typing"]
include = ["src/flask", "tests/type_check"]
typeCheckingMode = "basic"
[tool.ruff]