feat: use custom type to handle existing naive datetimes

This commit is contained in:
Iain Learmonth 2024-12-06 18:02:59 +00:00
parent e22abb383c
commit 39bdac1ecf
45 changed files with 210 additions and 84 deletions

View file

@ -1,4 +1,4 @@
from typing import Dict, Callable, Any
from typing import Any, Callable, Dict
from app.lists.bc2 import mirror_sites
from app.lists.bridgelines import bridgelines

View file

@ -1,4 +1,5 @@
from typing import List, Optional, TypedDict
from sqlalchemy.orm import selectinload
from app.models.base import Pool

View file

@ -1,4 +1,5 @@
from typing import List, Dict, Optional, TypedDict
from typing import Dict, List, Optional, TypedDict
from sqlalchemy.orm import selectinload
from app.models.base import Pool