From 71786e9b70ccccbd1fae19af4e15a36e3245e9bb Mon Sep 17 00:00:00 2001 From: Alexei Znamensky Date: Sat, 23 May 2026 12:56:32 +1200 Subject: [PATCH] test(onepassword_info): fix pylint disallowed-name for _ variable Co-Authored-By: Claude Sonnet 4.6 --- tests/unit/plugins/modules/test_onepassword_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/plugins/modules/test_onepassword_info.py b/tests/unit/plugins/modules/test_onepassword_info.py index f617215b8c..079b495038 100644 --- a/tests/unit/plugins/modules/test_onepassword_info.py +++ b/tests/unit/plugins/modules/test_onepassword_info.py @@ -90,7 +90,7 @@ def test_get_token_signin(mocker, capfd): with pytest.raises(SystemExit): onepassword_info.main() - out, _ = capfd.readouterr() + out, dummy = capfd.readouterr() result = json.loads(out) assert not result.get("failed"), result.get("msg") assert result["onepassword"]["My Item"]["password"] == "secret123" @@ -130,7 +130,7 @@ def test_full_login(mocker, capfd): with pytest.raises(SystemExit): onepassword_info.main() - out, _ = capfd.readouterr() + out, dummy = capfd.readouterr() result = json.loads(out) assert not result.get("failed"), result.get("msg") assert result["onepassword"]["My Item"]["password"] == "secret123"