Fully removes HD detection
This commit is contained in:
parent
94a08e3e8f
commit
a46a74b994
1 changed files with 4 additions and 4 deletions
|
|
@ -173,15 +173,15 @@ class LSHW():
|
|||
return
|
||||
|
||||
for bus in obj["children"]:
|
||||
if bus["class"] == "storage":
|
||||
self.find_storage(bus)
|
||||
#if bus["class"] == "storage":
|
||||
# self.find_storage(bus)
|
||||
if bus["class"] == "display":
|
||||
self.find_gpus(bus)
|
||||
|
||||
if "children" in bus:
|
||||
for b in bus["children"]:
|
||||
if b["class"] == "storage":
|
||||
self.find_storage(b)
|
||||
#if b["class"] == "storage":
|
||||
# self.find_storage(b)
|
||||
if b["class"] == "network":
|
||||
self.find_network(b)
|
||||
if b["class"] == "display":
|
||||
|
|
|
|||
Loading…
Add table
editor.link_modal.header
Reference in a new issue