fix: move from __future__ import annotations to top of payments.py
Some checks failed
API Endpoint Tests / test-api-endpoints (push) Successful in 15s
Integration Tests / test-service-integration (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

Python requires from __future__ imports to be at the beginning of the file.
The import was at line 10, causing SyntaxError during coordinator-api startup.
This commit is contained in:
aitbc
2026-04-25 08:15:07 +02:00
parent 7d3fe5891c
commit 5cf945e313

View File

@@ -1,3 +1,5 @@
from __future__ import annotations
from typing import Annotated
from fastapi import Depends
@@ -7,8 +9,6 @@ from sqlalchemy.orm import Session
from datetime import datetime, timedelta
from __future__ import annotations
from aitbc import get_logger, AITBCHTTPClient, NetworkError
logger = get_logger(__name__)