From: pmikus Date: Mon, 14 Aug 2023 07:25:55 +0000 (+0000) Subject: fix(core): Pylint leftovers X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=947057d7310cd1602119258c6b82fbb25fe1b79d fix(core): Pylint leftovers Signed-off-by: pmikus Change-Id: I8d3e93f61ba7929b79da386fbfcece992fea7324 --- diff --git a/resources/libraries/python/DUTSetup.py b/resources/libraries/python/DUTSetup.py index 9fc525cab7..66ae2294a3 100644 --- a/resources/libraries/python/DUTSetup.py +++ b/resources/libraries/python/DUTSetup.py @@ -306,11 +306,11 @@ class DUTSetup: :param node: DUT node. :param pf_pci_addr: Physical Function PCI device address. - :param type: Either device or driver. + :param path: Either device or driver. :param numvfs: Number of VFs to initialize, 0 - removes the VFs. :type node: dict :type pf_pci_addr: str - :type type: str + :type path: str :type numvfs: int :raises RuntimeError: Failed to create VFs on PCI. """ diff --git a/resources/libraries/python/QATUtil.py b/resources/libraries/python/QATUtil.py index be8cc9561e..09f6692aef 100644 --- a/resources/libraries/python/QATUtil.py +++ b/resources/libraries/python/QATUtil.py @@ -61,7 +61,7 @@ class QATUtil: # Initialize QAT VFs. if int(device["numvfs"]) > 0: DUTSetup.set_sriov_numvfs( - node, device["pci_address"], type="drivers/4xxx", + node, device["pci_address"], path="drivers/4xxx", numvfs=device["numvfs"] )