disable unpacking-non-sequence pylint rule

This commit is contained in:
nicholasmhughes 2023-05-23 15:10:39 -04:00
parent bf40680835
commit 41fe2c2b39
No known key found for this signature in database
GPG key ID: CB87254A2EA67E01

View file

@ -67,8 +67,10 @@ 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: disable=unpacking-non-sequence
) = mock_pip_install.call_args
# pylint: enable=unpacking-non-sequence
assert mock_install_call_kwargs["pkgs"] == pkg_to_install