From ac5afbc2e451af1d44cdbbf688f2843daadf8b53 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 3 May 2026 23:29:58 +0000 Subject: [PATCH 1/2] Initial plan From b8958fd19a582ab65d5cf5588a776411840fdf0a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 3 May 2026 23:31:25 +0000 Subject: [PATCH 2/2] Add mypy override to exempt test files from no-untyped-def error Agent-Logs-Url: https://github.com/jaraco/skeleton/sessions/22c20e05-3daf-4a5d-b35e-3acb0e028dd3 Co-authored-by: jaraco <308610+jaraco@users.noreply.github.com> --- mypy.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mypy.ini b/mypy.ini index efcb8cbc..564c443c 100644 --- a/mypy.ini +++ b/mypy.ini @@ -13,3 +13,8 @@ explicit_package_bases = True disable_error_code = # Disable due to many false positives overload-overlap, + +[mypy-tests.*] +# Tests don't need return type annotations +disable_error_code = + no-untyped-def,