Skip to content

Commit 281c5af

Browse files
committed
clean up noxfile
1 parent ca289d0 commit 281c5af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ def test_style(session: Session) -> None:
7979
".",
8080
"--check",
8181
"--extend-exclude",
82-
rf"/migrations/",
82+
"/migrations/",
8383
)
8484
session.run("isort", ".", "--check-only")
8585

8686

8787
def install_requirements_file(session: Session, name: str) -> None:
88-
file_path = HERE / "requirements" / (name + ".txt")
88+
file_path = HERE / "requirements" / f"{name}.txt"
8989
assert file_path.exists(), f"requirements file {file_path} does not exist"
9090
session.install("-r", str(file_path))

0 commit comments

Comments
 (0)