Skip to content
Snippets Groups Projects
Commit 31f42d5e authored by Hal Simpson's avatar Hal Simpson
Browse files

Added a util class for ObjectView, which made dealing with the namespace Object from

parseargs easier to duplicate.
parent 5b98cb18
No related branches found
No related tags found
No related merge requests found
class ObjectView(object):
def __init__(self, d):
self.__dict__ = d
def __str__(self):
return str(self.__dict__)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment