Skip to content

Commit c8e9bdc

Browse files
committed
Add missing dependency to mypy session
1 parent 295acf9 commit c8e9bdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def mypy(session: Session) -> None:
145145
"""Type-check using mypy."""
146146
args = session.posargs or ["src", "tests", "docs/conf.py"]
147147
session.install(".")
148-
session.install("mypy", "pytest")
148+
session.install("mypy", "freezegun", "pytest")
149149
session.run("mypy", *args)
150150
if not session.posargs:
151151
session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")

0 commit comments

Comments
 (0)