Closed jamesbraza closed 3 years ago
The public attribute setpoint in simple_pid.PID.PID is not exposed in the .pyi.
setpoint
simple_pid.PID.PID
.pyi
When scanning with mypy, it throws an error:
error: "PID" has no attribute "setpoint" [attr-defined]
A few ideas:
Versions
Python==3.8.5 simple-pid==1.0.0 mypy==0.812
I was not aware of this. Thanks for letting me know!
I have included setpoint and all the other public member variables in the typing stub and released it in version 1.0.1.
The public attribute
setpoint
insimple_pid.PID.PID
is not exposed in the.pyi
.When scanning with mypy, it throws an error:
A few ideas:
setpoint
to the.pyi
setpoint
private if it's not supposed to be publicVersions