From e1b1228a7b527a11b52487342780776615361df6 Mon Sep 17 00:00:00 2001 From: HanaAlizai Date: Fri, 9 Aug 2024 17:54:02 -0700 Subject: [PATCH] git add tox.ini requirements/typing.txt git commit -m "Replace mypy with pyright in tox.ini for consistent type checking" --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 60ebdb08..d33a5b26 100644 --- a/tox.ini +++ b/tox.ini @@ -27,8 +27,8 @@ skip_install = true commands = pre-commit run --all-files [testenv:typing] -deps = -r requirements/typing.txt -commands = mypy +deps = pyright +commands = pyright [testenv:docs] deps = -r requirements/docs.txt