Skip to content

Commit

Permalink
Merge pull request #253 from chezou/isort-fix
Browse files Browse the repository at this point in the history
Fix isort option
  • Loading branch information
chezou authored Aug 2, 2020
2 parents 72c60f6 + ffa406b commit 5ac248e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def lint(session):
session.install(*lint_tools)
session.run("flake8", *targets)
session.run("black", "--diff", "--check", *targets)
session.run("isort", "--check-only")
session.run("isort", "--check-only", *targets)


@nox.session
Expand Down
2 changes: 2 additions & 0 deletions tabula/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ def environment_info():
"""

import sys

import distro

from tabula import __version__

print(
Expand Down

0 comments on commit 5ac248e

Please sign in to comment.