REFACTOR: Remove object class inheritance

This commit is contained in:
Dominique Barton 2020-02-08 19:36:22 +01:00
parent 3428ed7e04
commit 022db5998f

View file

@ -27,7 +27,7 @@ class InvalidTagType(Exception):
pass
class Tag(object):
class Tag:
'''
Base RFID tag class, which will implement the factory pattern in Python's
own :py:meth:`__new__` method.