MCPcopy Create free account
hub / github.com/brain-workshop/brainworkshop / dotdict

Class dotdict

brainworkshop.py:635–639  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

633"""
634
635class dotdict(dict):
636 def __getattr__(self, attr):
637 return self.get(attr, None)
638 __setattr__= dict.__setitem__
639 __delattr__= dict.__delitem__
640
641def dump_pyglet_info():
642 from pyglet import info

Callers 1

parse_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected