Skip to content
Snippets Groups Projects
Util.py 137 B
Newer Older
  • Learn to ignore specific revisions
  • class ObjectView(object):
        def __init__(self, d):
            self.__dict__ = d
    
        def __str__(self):
            return str(self.__dict__)