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
{{ message }}
This repository has been archived by the owner on Feb 6, 2025. It is now read-only.
The lack of type hints means that we have to always suppress mypy's disallow_untyped_decorators rule. It also means that @cached_property properties return type Any, which makes mypy even less useful.
I think we should remove our dependency on
cached-property
, for a few reasons:mypy
'sdisallow_untyped_decorators
rule. It also means that@cached_property
properties return typeAny
, which makesmypy
even less useful.@cached_property
doesn't inherit from@property
, causing a number of other type issues. Here's the tracking issue for it, which has also been inactive in many years: Can cached_property be a subclass of property? pydanny/cached-property#26The text was updated successfully, but these errors were encountered: