You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
There is a weird problem which might be related to my configuration, but
In lines where I use colons - such as if conditions or for loops - it gives the error "Flake8 error: invalid point" on the first line, instead of the line with the error.
Like the example given below, If I remove the colon in line 3, the linter highlights the first line where variable declaration is made, and says "Flake8 error: invalid point" while it should highlight line 3 with the actual error.
a = 1
for x in range(4):
if x == 3
print(x)
I tried with different versions of Flake8, uninstalled and reinstalled linter-flake8 but couldn't solve the issue.
Thank you in advance.
The text was updated successfully, but these errors were encountered:
There is a weird problem which might be related to my configuration, but
In lines where I use colons - such as if conditions or for loops - it gives the error "Flake8 error: invalid point" on the first line, instead of the line with the error.
Like the example given below, If I remove the colon in line 3, the linter highlights the first line where variable declaration is made, and says "Flake8 error: invalid point" while it should highlight line 3 with the actual error.
I tried with different versions of Flake8, uninstalled and reinstalled linter-flake8 but couldn't solve the issue.
Thank you in advance.
The text was updated successfully, but these errors were encountered: