We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71e38b5 commit 88d2983Copy full SHA for 88d2983
packages/postgres-database/src/simcore_postgres_database/utils_payments.py
@@ -6,6 +6,7 @@
6
7
import sqlalchemy as sa
8
import sqlalchemy.exc
9
+from sqlalchemy.engine import Row
10
from sqlalchemy.ext.asyncio import AsyncConnection
11
12
from .models.payments_transactions import PaymentTransactionState, payments_transactions
@@ -14,7 +15,7 @@
14
15
16
17
PaymentID: TypeAlias = str
-PaymentTransactionRow: TypeAlias = sa.Row
18
+PaymentTransactionRow: TypeAlias = Row
19
20
21
UNSET: Final[str] = "__UNSET__"
0 commit comments