VT-PR/vinetrimmer/utils/MSL/MSLObject.py

7 lines
162 B
Python
Raw Permalink Normal View History

2025-03-18 00:17:27 +05:30
import jsonpickle
class MSLObject:
def __repr__(self):
return "<{} {}>".format(self.__class__.__name__, jsonpickle.encode(self, unpicklable=False))