BurningKarl
Results
2
issues of
BurningKarl
### Example to reproduce faulty behavior: ```python from dataclasses import dataclass from typing import Optional, Union import dacite class A(int): pass class B(str): pass @dataclass class C: a_or_b: Optional[Union[A, B]]...
bug
This should fix #163. The solution is explained there. @konradhalas Thank you for providing such a great library. I hope this PR can make it even better.