Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The position of the import heading is somtimes strange. #905

Closed
ok97465 opened this issue Mar 19, 2019 · 1 comment
Closed

The position of the import heading is somtimes strange. #905

ok97465 opened this issue Mar 19, 2019 · 1 comment
Labels
bug Something isn't working

Comments

@ok97465
Copy link

ok97465 commented Mar 19, 2019

I use 4.3.15 version of isort.

The location of the import heading in the example below is a bit strange.

from isort import SortImports


text_old = """# Third party imports
import numpy as np

# Local imports
from oklib.plot_ok import imagesc

import os.path as osp
"""

config = {'import_heading_stdlib': 'Standard library imports',
          'import_heading_thirdparty': 'Third party imports',
          'import_heading_firstparty': 'Local imports'}

new_contents = SortImports(file_contents=text_old, **config).output
print(new_contents)

The result of the example is as follows.

# Third party imports
# Standard library imports
import os.path as osp

import numpy as np

# Local imports
from oklib.plot_ok import imagesc

The expected results are as follows.

# Standard library imports
import os.path as osp

# Third party imports
import numpy as np

# Local imports
from oklib.plot_ok import imagesc

Thanks for reading. Have a nice day.

@timothycrosley timothycrosley added the bug Something isn't working label Apr 7, 2019
timothycrosley added a commit that referenced this issue Apr 7, 2019
timothycrosley added a commit that referenced this issue Apr 7, 2019
timothycrosley added a commit that referenced this issue Apr 7, 2019
@timothycrosley
Copy link
Member

Thank you for reporting this bug! This is fixed in release 4.3.17: https://github.com/timothycrosley/isort/releases/tag/4.3.17

Thanks!

~Timothy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants