Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Callable? #97

Open
spl0k opened this issue May 13, 2020 · 2 comments
Open

Support for Callable? #97

spl0k opened this issue May 13, 2020 · 2 comments
Labels
enhancement New feature or request

Comments

@spl0k
Copy link

spl0k commented May 13, 2020

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

import dacite

from dataclasses import dataclass
from typing import Callable


@dataclass
class A:
    i: int
    f: Callable[[int], bool]


def odd(value: int) -> bool:
    return bool(value % 2)


a = dacite.from_dict(A, {"i": 42, "f": odd})

produces the following error

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"
@konradhalas
Copy link
Owner

Hi @spl0k - thank you for reporting this issue.

Hmm, interesting idea. I have to think about it. Nevertheless it should: work OR be covered in documentation that it doesn't.

For now you can disable type checking with Config(check_types=False)

@konradhalas konradhalas added the enhancement New feature or request label Jul 3, 2020
@sdaberdaku
Copy link

sdaberdaku commented Jul 10, 2023

I am having this same issue in version 1.8.1 and python 3.10.11.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants