Skip to content

Commit 3d002e9

Browse files
committed
chore: fix noxfile wrong type hint
1 parent 7cd2432 commit 3d002e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
@nox.session(python=__supported_versions__) # type: ignore
19-
def test(session: nox.session):
19+
def test(session: nox.Session):
2020
session.install("-r", test_req_path)
2121
session.run("python", "-m", "pytest")
2222
session.run("python", "-m", "bandit", "-c", "bandit.yml", "-r", ".")

0 commit comments

Comments
 (0)