add static type annotations

This commit is contained in:
David Lord
2024-04-30 10:46:55 -07:00
parent 691acc186b
commit cdcf917044
27 changed files with 463 additions and 253 deletions

View File

@@ -1,6 +1,8 @@
from __future__ import annotations
import pytest
@pytest.fixture(autouse=True)
def mock_env_development(monkeypatch):
def mock_env_development(monkeypatch: pytest.MonkeyPatch) -> None:
monkeypatch.setenv("FLASK_ENV", "development")