From 982b6d878051620feec1fe10aa45bc206ea11638 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Tue, 17 Sep 2024 22:28:59 -0600 Subject: [PATCH] Clean up --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 8cd281e7b..a07c953ab 100644 --- a/noxfile.py +++ b/noxfile.py @@ -54,7 +54,7 @@ def mypy(session: Session) -> None: """Check types with mypy.""" args = session.posargs or ["singer_sdk"] session.install(".[faker,jwt,parquet,s3,testing]") - session.install(*typing_dependencies, "boto3-stubs[s3]") + session.install(*typing_dependencies) session.run("mypy", *args) if not session.posargs: session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")