From 7bdef2f0177eaa09b7ec6e278dc99e86a8119831 Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Tue, 26 Nov 2024 14:46:17 -0500 Subject: [PATCH] Fix mypy warnings in tests/test_args.py (#2945) --- tests/test_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_args.py b/tests/test_args.py index c2ba9aaa..d2c5d4d5 100644 --- a/tests/test_args.py +++ b/tests/test_args.py @@ -15,7 +15,7 @@ from archinstall.lib.profile.profiles_handler import profile_handler from archinstall.lib.translationhandler import translation_handler -def test_default_args(monkeypatch): +def test_default_args(monkeypatch: MonkeyPatch) -> None: monkeypatch.setattr('sys.argv', ['archinstall']) handler = ArchConfigHandler() args = handler.args