From 70e5754e7903d65b0045899ddc578cc6ba292602 Mon Sep 17 00:00:00 2001 From: Brian Pepple Date: Mon, 24 Jun 2024 13:12:52 -0400 Subject: [PATCH] Use correct type skipping --- tests/test_archiver_rar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_archiver_rar.py b/tests/test_archiver_rar.py index df191b4..7340ae5 100644 --- a/tests/test_archiver_rar.py +++ b/tests/test_archiver_rar.py @@ -37,7 +37,7 @@ def test_write_file(rar_archiver): def test_copy_from_archive(rar_archiver): # Act - result = rar_archiver.copy_from_archive(None) # noqa: type + result = rar_archiver.copy_from_archive(None) # type: ignore # Assert assert result is False