test
This commit is contained in:
parent
45bbf363d3
commit
f53f62e80c
@ -6,3 +6,11 @@ class SpiceBotCore_OBJ():
|
||||
self.script_dir = None
|
||||
self.increment = 1
|
||||
self.bot = None
|
||||
|
||||
def __getattr__(self, name):
|
||||
"""
|
||||
Quick and dirty shortcuts. Will only get called for undefined attributes.
|
||||
"""
|
||||
|
||||
if hasattr(self.fhdhr, name):
|
||||
return eval("self.fhdhr.%s" % name)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user