Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit baeeeb0

Browse files
committed
Forces no-skip mode.
1 parent 5e713c8 commit baeeeb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/python-isort.coffee

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class PythonIsort
4444
if not @checkForPythonContext()
4545
return
4646

47-
params = [@getFilePath(), "-c", "-vb"]
47+
params = ["-ns", @getFilePath(), @getFilePath(), "-c", "-vb"]
4848
isortpath = atom.config.get "python-isort.isortPath"
4949

5050
which = process.spawnSync('which', ['isort']).status
@@ -65,7 +65,7 @@ class PythonIsort
6565
if not @checkForPythonContext()
6666
return
6767

68-
params = [@getFilePath(), "-vb"]
68+
params = ["-ns", @getFilePath(), @getFilePath(), "-vb"]
6969
isortpath = atom.config.get "python-isort.isortPath"
7070

7171
which = process.spawnSync('which', ['isort']).status

0 commit comments

Comments
 (0)