Closed
Description
This method is declared as final
:
Lines 3629 to 3630 in 526d52f
It's then overridden in series
:
Line 866 in 526d52f
The reason mypy
doesn't detect this failure is that the override in series
in untyped, and so mypy
doesn't check it
@jbrockmendel do you know which one is correct? Remove final
or remove the override?