Object is not callable

Asked by Geeta

Hi ,

I am having a problem while running the script written in Python which is embedded with Sikuli.
There is one object that appears on desktop, the next step is that the code should click on one of the buttons on that object
But there is one "Type error: 'edu.mit.csail.uid.match' object is not callable.

can ypu please let me know why does this problem occur and whats the solution.

Thanks in advance
Geeta

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
RaiMan
Solved:
Last query:
Last reply:
Revision history for this message
Best RaiMan (raimund-hocke) said :
#1

you are using something like object() which is interpreted as method call and hence not possible.

You may have a naming conflict or a simple typing or "misunderstood something" error.

paste the respective line of code.

Revision history for this message
Geeta (geeta-gudaru) said :
#2

Thanks RaiMan, that solved my question.