I've been working on getting my #WaitWait Stats API to work with #Pydantic 2 and was wondering why it was erroring out on one specific endpoint.
Turns out, it was a bug I introduced back when I was trying to optimize the `wwdtm` library and, if there was no data returned from a query, the key would be set to an empty list.
The problem? It's supposed to be an empty dictionary.
I had typed `[]` instead of `{}`.