Skip to content

Commit d6028b9

Browse files
chore: update noxfile comments
1 parent 8eb5bf4 commit d6028b9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

noxfile.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
import nox
2222

23-
2423
LINT_PATHS = ["google", "tests", "noxfile.py"]
2524

2625
TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
@@ -60,12 +59,9 @@ def lint(session):
6059
@nox.session()
6160
def format(session):
6261
"""
63-
Run isort to sort imports. Then run black
64-
to format code to uniform standard.
62+
Run Ruff to automatically format code.
6563
"""
6664
session.install("ruff")
67-
# Use the --fss option to sort imports using strict alphabetical order.
68-
# See https://pycqa.github.io/isort/docs/configuration/options.html#force-sort-within-sectionss
6965
session.run(
7066
"ruff",
7167
"check",

0 commit comments

Comments
 (0)