- improvement of callable checks python the parameter/return value is an unknown callable Callable[..., Any]
python the callable will have no arguments and returns a string Callable[[], str]
python the annotation needs to match the callable you want to allow for multiple options use Union[ Callable[[int, str, str], str], Callable[[int, str, int], str] ]
2.1.8
2.1.7
- feat `FinalClass` decorator, __disable Inheritance__ for the decorated class - fix bug 71 (Initializing TypedDict like a normal class with kwargs fails) - fix bug 69 (Handle functions wich specify a value having of type TypeDict)
2.1.6
- class decorator for docstrings from typing class_docs_from_typing - beta feature FrozenType
2.1.5
- support for latest strongtyping-modules version (0.1.4) - support for TypedDict - bugfixes