--- a/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py Sat Feb 16 10:57:01 2019 +0100 +++ b/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py Sat Feb 16 11:48:06 2019 +0100 @@ -527,6 +527,13 @@ message = 'syntax error in type comment %r' def __init__(self, filename, loc, annotation): + """ + Constructor + + @param filename name of the file (string) + @param loc location of the issue + @param annotation erroneous forward annotation (string) + """ Message.__init__(self, filename, loc) self.message_args = (annotation,)