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
standard import "import re" should be placed before "from astroid import MANAGER" pylint(wrongimport-order) [5, 1]
I get these errors even if I put the following code in a module:
""" module that is doing nothing """
i = 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
i = i + 1
I am using Python 3.8.6 and the following pylint versions:
pylint==2.6.0
pylint-flask==0.6
pylint-flask-sqlalchemy==0.2.0
pylint-plugin-utils==0.6
If I remove the plugin ""pylint_flask_sqlalchemy", then my errors are gone (but I then obviously get all the sqlalchemy" related errors
The text was updated successfully, but these errors were encountered:
Wow, that's a pretty weird bug 😅 ! And by looking at the +1 you're not alone...
In the current state of the repository (we made lots of changes this week) I can't reproduce the bug. So I suggest to leave this ticket on hold while waiting for v1 to see if the problem persists, would that be okay with you?
I add the "pylint_flask_sqlalchemy" plugin to my VSCODE settings.json file:
I then get 2 linting error on every single python file. The errors are always for line 5 and 12:
I get these errors even if I put the following code in a module:
I am using Python 3.8.6 and the following pylint versions:
pylint==2.6.0
pylint-flask==0.6
pylint-flask-sqlalchemy==0.2.0
pylint-plugin-utils==0.6
If I remove the plugin ""pylint_flask_sqlalchemy", then my errors are gone (but I then obviously get all the sqlalchemy" related errors
The text was updated successfully, but these errors were encountered: