VT-PR/vinetrimmer/utils/MSL/MSLObject.py
Aswin f8c4accd54 Reset
Reset dev
2025-03-18 00:17:27 +05:30

7 lines
162 B
Python

import jsonpickle
class MSLObject:
def __repr__(self):
return "<{} {}>".format(self.__class__.__name__, jsonpickle.encode(self, unpicklable=False))