From 65ee3dde58bfcb70239bb698a8537e7aa8c74585 Mon Sep 17 00:00:00 2001 From: sadasilv Date: Thu, 7 Nov 2024 14:48:07 -0500 Subject: [PATCH] mypy.ini: Adjust mypy to match new structure and imports --- mypy.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index 4f56633..7676d56 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,10 +1,14 @@ [mypy] strict = true scripts_are_modules = true -files = *.py, bfb, console, cx_fwup, fwdefaults, fwup, fwversion, get_mode, listbf, pxeboot, reset, set_mode, dpu-tools/dpu-tools, dpu-tools/*.py +files = dpu-tools, utils +explicit_package_bases = true [mypy-pexpect] ignore_missing_imports = true [mypy-requests] ignore_missing_imports = true + +[mypy-paramiko] +ignore_missing_imports = true