bmuller / kademlia

A DHT in Python using asyncio
http://kademlia.readthedocs.org
MIT License
830 stars 210 forks source link

Storage Interface: use '@abstractmethod' instead of 'raise NotImplementedError' #61

Closed joriscarrier closed 5 years ago

bmuller commented 5 years ago

Hey @joriscarrier - I think IStorage needs to extend abc.ABC. See this note regarding abstractmethod:

Using this decorator requires that the class’s metaclass is ABCMeta or is derived from it.