.enum_members
property does not account to @member
decorator and call
#18557
Labels
.enum_members
property does not account to @member
decorator and call
#18557
Code in question:
mypy/mypy/nodes.py
Lines 3232 to 3243 in 93d1ce4
This is a problem, because methods decorated as
@member
are not included into the members list.The simplest repro where this is a problem:
With
--warn-unreachable
it will produce:Because
.enum_members
here will only containCAT
:mypy/mypy/typeops.py
Lines 974 to 978 in 93d1ce4
I will send a PR with the fix.
The text was updated successfully, but these errors were encountered: