redset
redset copied to clipboard
Get rid of `metaclass`
Replaced abc.ABCMeta and object base class with the simpler ABC class from abc module
Modern Python uses ABC instead of setting metaclass explicitly.
No need to inherit from object in Python 3 (it's the default.)