mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-05 02:24:21 -05:00
* Improve and test `dataclass_from_dict` tuple validation * Improve and test `dataclass_from_dict` list validation * Introduce `convert_hex_string` * Improve and test `dataclass_from_dict` byte type validation * Improve and test `dataclass_from_dict` unhashable validation * Improve and test `dataclass_from_dict` primitive validation * Improve `dataclass_from_dict` validation * `raise TypeError(...) from e` * Just `raise`, don't `raise e` * Use `repr` of `item` not `str` * `type(item) == f_type` -> `isinstance(item, f_type)`