Flake8Lint
Flake8Lint copied to clipboard
Invalid error for print method E901
With a line like print("Something", end="\r")
or print("Something", end="")
, its display an error message E901 SyntaxError: invalid syntax. If I manually run flake8
on the same file it doesn't display an error.
It doesn't like the end
argument. Is there something that can be done in the plugin about that?