disable unpacking-non-sequence pylint rule

This commit is contained in:
nicholasmhughes 2023-05-23 13:25:21 -04:00
parent a34d42b276
commit bf40680835
No known key found for this signature in database
GPG key ID: CB87254A2EA67E01

View file

@ -67,5 +67,8 @@ def test_issue_64169(caplog):
# Confirm that the state continued to install the package as expected.
# Only check the 'pkgs' parameter of pip.install
mock_install_call_args, mock_install_call_kwargs = mock_pip_install.call_args
(
mock_install_call_args,
mock_install_call_kwargs,
) = mock_pip_install.call_args # pylint: disable=unpacking-non-sequence
assert mock_install_call_kwargs["pkgs"] == pkg_to_install