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, Mapping,
Sequence, Sequence,
) )
from decimal import (
Decimal,
)
from typing import ( from typing import (
TypeAlias, TypeAlias,
NewType, NewType,
@ -22,7 +19,7 @@ JSON: TypeAlias = Union[
Sequence["JSON"], Sequence["JSON"],
str, str,
int, int,
Decimal, float,
bool, bool,
] ]

Loading…
Cancel
Save