Given: ```py from package import CONSTANT from package import * # noqa ``` isort will relocate the `# noqa` comment to the first line: ```py from package import CONSTANT # noqa from package import * ``` ... which obviously breaks things.
Given:
isort will relocate the
# noqacomment to the first line:... which obviously breaks things.