Skip to content

Commit

Permalink
Update nvme.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SRIKKANTH committed Nov 12, 2024
1 parent f75f6b1 commit 167d6d8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lisa/features/nvme.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ def _get_os_disk_nvme_device(self) -> str:
def get_devices_from_lspci(self) -> List[PciDevice]:
devices_from_lspci = []
lspci_tool = self._node.tools[Lspci]
device_list = lspci_tool.get_devices()
device_list = lspci_tool.get_devices_by_type(DEVICE_TYPE_NVME)
devices_from_lspci = [
x for x in device_list if self._pci_device_name == x.device_class
Expand Down

0 comments on commit 167d6d8

Please sign in to comment.