Open DragonlordNewb opened 1 year ago
It's something that has changed between Python versions (after 3.7) https://docs.python.org/3.7/library/collections.abc.html#module-collections.abc
You're welcome to open a PR to fix this (maybe have a try except block to try the older version import for backward compatibility)
In
winpcapy.py
, the nameCallable
is imported fromcollections
at the top. However I think that it's supposed to betyping
; the code throws an error when I replace the name, andCallable
is a type fromtypings
.