Change Tuple[Any] to Tuple[Any, ...] for JSONInput and JSONInputBin. Otherwise type hinting will complain about passing tuples: srsly.json_dumps(data=(1, 2, 3)) will trigger a type hint warning.
Types of change
Bug fix.
Checklist
[x] I confirm that I have the right to submit this contribution under the project's MIT license.
[x] I ran the tests, and all new and existing tests passed.
[x] My changes don't require a change to the documentation, or if they do, I've added all required information.
Description
Change
Tuple[Any]
toTuple[Any, ...]
forJSONInput
andJSONInputBin
. Otherwise type hinting will complain about passing tuples:srsly.json_dumps(data=(1, 2, 3))
will trigger a type hint warning.Types of change
Bug fix.
Checklist