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
The location of the import heading in the example below is a bit strange.
fromisortimportSortImportstext_old="""# Third party importsimport numpy as np# Local importsfrom oklib.plot_ok import imagescimport 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).outputprint(new_contents)
The result of the example is as follows.
# Third party imports# Standard library importsimportos.pathasospimportnumpyasnp# Local importsfromoklib.plot_okimportimagesc
The expected results are as follows.
# Standard library importsimportos.pathasosp# Third party importsimportnumpyasnp# Local importsfromoklib.plot_okimportimagesc
Thanks for reading. Have a nice day.
The text was updated successfully, but these errors were encountered:
I use 4.3.15 version of isort.
The location of the import heading in the example below is a bit strange.
The result of the example is as follows.
The expected results are as follows.
Thanks for reading. Have a nice day.
The text was updated successfully, but these errors were encountered: