TypeError: 'module object is not callable'
- From: christophertidy@xxxxxxxxxxx
- Date: Mon, 03 Sep 2007 08:48:19 -0000
Hi
I am new to Python and have recieved this error message when trying to
instantiate an object from a class from another file within the same
directory and wondered what I have done wrong.
I have a Step.py class:
class Step(object)
def __init__(self, sName):
"Initialise a new Step instance"
self.sName = sName
self.depSteps = []
self.remDepSteps = []
self.isCompleted = 0
Then I have created a new file within the same directory called
main.py:
import Step
a = Step("magn")
The following however generates the error
Traceback (most recent call last):
File "main.py", line 3, in ?
a = Step("magn")
TypeError: 'module' object is not callable
If anyone could help point me in the right direction, how to fix this
problem it would be much appreciated.
Chris
.
- Follow-Ups:
- Re: TypeError: 'module object is not callable'
- From: Diez B. Roggisch
- Re: TypeError: 'module object is not callable'
- From: Lawrence Oluyede
- Re: TypeError: 'module object is not callable'
- From: Amit Khemka
- Re: TypeError: 'module object is not callable'
- Prev by Date: ShowMeDo.com Announces Winner of Most-Video-Plays of the Month
- Next by Date: Re: TypeError: 'module object is not callable'
- Previous by thread: ShowMeDo.com Announces Winner of Most-Video-Plays of the Month
- Next by thread: Re: TypeError: 'module object is not callable'
- Index(es):
Relevant Pages
|