I've got a Python script, and whenever I try to run it for the first time, I get this error:
CODE
# Error: ('invalid syntax', (None, 1, 8, 'def VOM.ShowUI( *args, **keywords ):\n'))
# File "", line 1
# def VOM.ShowUI( *args, **keywords ):
# ^
# SyntaxError: invalid syntax #
I don't have any function in my code called VOM.ShowUI. I can't find any info about it either. What is this error about and where is it coming from?
And it only shows up the first time when running the script. The second, and all subsequent times, it doesn't show this error.