Changelog
Here is the changelog for the package starting from version 0.1.9:
0.1.9
- Corrected the type signature of the
enabled_when_frozendecorator. The new signature is(method: Callable) -> Any. The signature was previously(method: _F) -> _Fwhere_Fis a type variable bounded byCallable. This was incorrect because if a callable object that was not a user function was given, then the return type would be a user function, which is inconsistent with the signature.