From 235cd933265d7ce7f1519bbdfc6990da3bb413be Mon Sep 17 00:00:00 2001 From: Natalie Lee Date: Thu, 25 May 2023 14:53:45 +0000 Subject: [PATCH] removing added pylint exception for unpacking-non-sequence pylint rule --- tests/pytests/unit/states/test_pip.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/pytests/unit/states/test_pip.py b/tests/pytests/unit/states/test_pip.py index 4624ab25acb..44954033cb2 100644 --- a/tests/pytests/unit/states/test_pip.py +++ b/tests/pytests/unit/states/test_pip.py @@ -67,10 +67,9 @@ def test_issue_64169(caplog): # Confirm that the state continued to install the package as expected. # Only check the 'pkgs' parameter of pip.install - # pylint: disable=unpacking-non-sequence ( mock_install_call_args, mock_install_call_kwargs, ) = mock_pip_install.call_args - # pylint: enable=unpacking-non-sequence + assert mock_install_call_kwargs["pkgs"] == pkg_to_install