zeromq / pyzmq

PyZMQ: Python bindings for zeromq
http://zguide.zeromq.org/py:all
BSD 3-Clause "New" or "Revised" License
3.66k stars 638 forks source link

[lint] abstract class instantiated #1895

Closed mrx23dot closed 1 year ago

mrx23dot commented 1 year ago

What pyzmq version?

25.0.0

What libzmq version?

?

Python version (and how it was installed)

3.8

OS

win10

What happened?

Pylint gives error for

zRepCtx = zmq.Context() Abstract class 'Context' with abstract methods instantiated

Not getting this for other libs, so I guess this is something not nice. Still works, only a lint issue.

Code to reproduce bug

No response

Traceback, if applicable

No response

More info

No response

minrk commented 1 year ago

@mrx23dot can you check with pyzmq 25.1.1? I think this is fixed.

mrx23dot commented 1 year ago

Thank you that solved it, no more lib warning. Great lib!