mitsuse / typedjson-python

JSON decoding for Python with type hinting (PEP 484).
MIT License
29 stars 5 forks source link

decode None as list returns TypeMismatch #12

Closed ganow closed 3 years ago

ganow commented 3 years ago

I fixed a problem that I reported in #11. typedjson.decode(List[str], None) now returns TypeMismatch error.

mitsuse commented 3 years ago

@ganow Thanks for submitting! I released the new version 0.10.4 including this fix and closed #11.

ganow commented 3 years ago

@mitsuse Thank you for your quick response!