clslgrnc / tbrop

Useless inheritance from object PYL-R0205
Anti-pattern
Minor
4 years ago5 years old
Class 'InstMatrix' inherits from object, can be safely removed from bases in python3
  7instMatrixDict = {}
  8
  9
 10class InstMatrix(object): 11    @property
 12    def matrix(self):
 13        return self._matrix