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
I obviously don't want isort to touch any line with noqa present. But isort does make changes. It forces it into from django.contrib.auth.models import Group, User (which normally would be good, but I want it my way in this case for a reason).
At best, it moves my entire block with pragma comments as the very last import statement. But that's also not what I want. I want my noqa imports to remain in place where they are and be untouched.
Is there a way to achieve this? I had to disable isort for now, but I would rather not do that as a long term solution.
The text was updated successfully, but these errors were encountered:
Filename: example.py
Filename: pyproject.toml
I obviously don't want
isort
to touch any line with noqa present. But isort does make changes. It forces it intofrom django.contrib.auth.models import Group, User
(which normally would be good, but I want it my way in this case for a reason).At best, it moves my entire block with pragma comments as the very last import statement. But that's also not what I want. I want my noqa imports to remain in place where they are and be untouched.
Is there a way to achieve this? I had to disable isort for now, but I would rather not do that as a long term solution.
The text was updated successfully, but these errors were encountered: