Skip to content

Commit

Permalink
Disable 'import-order' by default fix #82
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Rudnyh committed Feb 4, 2016
1 parent 0dec916 commit 3d5fd57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def lint(lines, settings):
)

# lint with import order
if settings.get('import-order', False):
if settings.get('import_order', False):
order_style = settings.get('import_order_style')
import_linter = ImportOrderLinter(tree, None, lines, order_style)
for error in import_linter.run():
Expand Down

0 comments on commit 3d5fd57

Please sign in to comment.