alecthomas / voluptuous

CONTRIBUTIONS ONLY: Voluptuous, despite the name, is a Python data validation library.
https://pypi.org/project/voluptuous
BSD 3-Clause "New" or "Revised" License
1.81k stars 219 forks source link

Drop duplicated type checks in Schema._compile #495

Closed emontnemery closed 9 months ago

emontnemery commented 9 months ago

Schema._compile calls isinstance to check for list and Mapping, hence the check further down testing for list or dict can never be True.

alecthomas commented 9 months ago

Nice catch, thanks.