Skip to content

Commit d48f721

Browse files
committed
Revert toml-sort checks
1 parent 595b24a commit d48f721

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

noxfile.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,12 @@
5050

5151
@nox.session()
5252
def lint(session):
53-
"""Run linters."""
54-
session.install("flake8", "toml-sort")
53+
"""Run flake8."""
54+
session.install("flake8")
5555
# stop the linter if there are Python syntax errors or undefined names
5656
session.run("flake8", "--select=E9,F63,F7,F82", "--show-source")
5757
# exit-zero treats all errors as warnings
5858
session.run("flake8", "--exit-zero", "--max-complexity=10")
59-
# check the pyproject.toml file for correctness
60-
session.run("toml-sort", "--check", "pyproject.toml")
6159

6260

6361
def parametrize_test_versions():

0 commit comments

Comments
 (0)