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

Commit

Permalink
Forces no-skip mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
lexicalunit committed Feb 17, 2016
1 parent 5e713c8 commit baeeeb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python-isort.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class PythonIsort
if not @checkForPythonContext()
return

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

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

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

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

0 comments on commit baeeeb0

Please sign in to comment.