Fix recursion error
All checks were successful
Build and Publish college-bot-v2 / build_and_publish (push) Successful in 16s

This commit is contained in:
Nexus 2024-06-05 01:19:56 +01:00
parent b05a3abe8a
commit 4ccc1a6c3d
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -16,7 +16,7 @@ FIFO = "/tmp/college-bot-ipc"
JSON: typing.Union[
str, int, float, bool, None, typing.Dict[str, "JSON"], typing.List["JSON"]
] = typing.Union[
str, int, float, bool, None, typing.Dict[str, "JSON"], typing.List["JSON"]
str, int, float, bool, None, dict, list
]