From dfa7fede8223a69e22006a687f85009d8aecd81c Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 1 Dec 2023 10:59:09 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=8E=E2=80=8D=E2=99=80=EF=B8=8F=20Genuf?= =?UTF-8?q?lect=20to=20the=20types.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a redundant type definition to a test to avoid warnings about the inner types being unchecked. Closes #478. --- tests/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_main.py b/tests/test_main.py index 79181bf4..a0be5bae 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -400,7 +400,7 @@ def test_packages_distributions_all_module_types(self): assert not any(name.endswith('.dist-info') for name in distributions) - def test_packages_distributions_symlinked_top_level(self): + def test_packages_distributions_symlinked_top_level(self) -> None: """ Distribution is resolvable from a simple top-level symlink in RECORD. See #452.