Skip to content

Commit

Permalink
fix: float
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Dec 31, 2024
1 parent 2f0e822 commit 13abc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codeforlife/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

JsonList = t.List["JsonValue"]
JsonDict = t.Dict[str, "JsonValue"]
JsonValue = t.Union[None, int, str, bool, JsonList, JsonDict]
JsonValue = t.Union[None, int, float, str, bool, JsonList, JsonDict]

DataDict = t.Dict[str, t.Any]
OrderedDataDict = t.OrderedDict[str, t.Any]
Expand Down

0 comments on commit 13abc94

Please sign in to comment.