From a8e5bec377b0fab901833b365c0c1bb4dc501490 Mon Sep 17 00:00:00 2001 From: tsteven4 <13596209+tsteven4@users.noreply.github.com> Date: Mon, 15 Dec 2025 07:09:25 -0700 Subject: [PATCH] fix mypy configuration correct spelling of types-requests for mypy. add missing dependency for mypy to fix: mypy: commands[0]> mypy --html-report build/mypy aqt You must install the lxml package before you can run mypy with `--html-report`. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ef3c262..a7f922e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -210,7 +210,7 @@ commands = [["check-manifest", "{toxinidir}"], ["flake8", "aqt", "tests"]] [tool.tox.env.mypy] extras = ["check"] -deps = ["types-request", "types-beautifulsoup4", "types-psutil"] +deps = ["lxml", "types-requests", "types-beautifulsoup4", "types-psutil"] commands = [["mypy", "--html-report", "build/mypy", "aqt"]] [tool.tox.env.docs]