You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thanks for this library.
Would you consider adding support for Callable types? They currenly fail the type checking.
For instance this code
Traceback (most recent call last):
File "dacite_callable.py", line 17, in <module>
a = dacite.from_dict(A, {"i": 42, "f": odd})
File "E:\...\env\lib\site-packages\dacite\core.py", line 65, in from_dict
raise WrongTypeError(field_path=field.name, field_type=field.type, value=value)
dacite.exceptions.WrongTypeError: wrong value type for field "f" - should be "Callable" instead of value "<function odd at 0x000001EA7FC11EA0>" of type "function"
The text was updated successfully, but these errors were encountered:
Hello.
First of all, thanks for this library.
Would you consider adding support for
Callable
types? They currenly fail the type checking.For instance this code
produces the following error
The text was updated successfully, but these errors were encountered: