Hello everyone!
i have the following test code:
class temp:
def __init__(self):
self.hello = "hello world!"
def printworld(self ):
print(self.hell o)
t = temp()
and i tried to call profile('t.prin tworld()')
but i received the following error:
Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: 'module' object is not callable
I'm not sure what is wrong exactly, if anyone can point me to the
right direction, it would be much appreciated!
i have the following test code:
class temp:
def __init__(self):
self.hello = "hello world!"
def printworld(self ):
print(self.hell o)
t = temp()
and i tried to call profile('t.prin tworld()')
but i received the following error:
Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: 'module' object is not callable
I'm not sure what is wrong exactly, if anyone can point me to the
right direction, it would be much appreciated!
Comment