From 35430e35a106c2a1a53f4323a9b4129e2d6ac8b0 Mon Sep 17 00:00:00 2001 From: burnettk Date: Tue, 21 Jun 2022 22:43:37 -0400 Subject: [PATCH] add stubs to try to get mypy plugin sqlmypy --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index fd4d421d..fcd8fc13 100644 --- a/noxfile.py +++ b/noxfile.py @@ -132,7 +132,7 @@ def mypy(session: Session) -> None: """Type-check using mypy.""" args = session.posargs or ["src", "tests", "docs/conf.py"] session.install(".") - session.install("mypy", "pytest") + session.install("mypy", "pytest", "sqlalchemy-stubs") session.run("mypy", *args) if not session.posargs: session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")