dreadatour / Flake8Lint

Sublime Text plugin for lint Python files
233 stars 58 forks source link

Invalid error for print method E901 #98

Open marcaurele opened 7 years ago

marcaurele commented 7 years ago

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?