fix(core): Pylint leftovers 64/39364/3
authorpmikus <peter.mikus@protonmail.ch>
Mon, 14 Aug 2023 07:25:55 +0000 (07:25 +0000)
committerPeter Mikus <peter.mikus@protonmail.ch>
Tue, 15 Aug 2023 10:09:37 +0000 (10:09 +0000)
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I8d3e93f61ba7929b79da386fbfcece992fea7324

resources/libraries/python/DUTSetup.py
resources/libraries/python/QATUtil.py

index 9fc525c..66ae229 100644 (file)
@@ -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.
         """
index be8cc95..09f6692 100644 (file)
@@ -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"]
             )