1
0
Fork 0

our_types/JSON: replace Decimal with correct float

main
Felix Stupp 3 months ago
parent 4f640509f9
commit d1c2e8e0bb
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -4,9 +4,6 @@ from collections.abc import (
Mapping,
Sequence,
)
from decimal import (
Decimal,
)
from typing import (
TypeAlias,
NewType,
@ -22,7 +19,7 @@ JSON: TypeAlias = Union[
Sequence["JSON"],
str,
int,
Decimal,
float,
bool,
]

Loading…
Cancel
Save