how would I go about doing the pseudo code below
import bClass
import cClass
class aClass:
def __init__(self):
pass
a = aClass()
a.bClass = bClass()
a.cClass = cClass()
How would I put these classes on this parent class? When I try I get
p.GlobalHistory = GlobalHistory()
TypeError: 'module' object is not callable
Thanks,