CI: fix build

This commit is contained in:
Carter Li
2024-09-26 19:56:36 +08:00
parent e07fcc4d49
commit 4283d96c53
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -9,10 +9,10 @@ class PciVendorModel:
def __init__(self, id: int, name: str):
self.id = id
self.name = name
self.devices: list[PciDeviceModel] = []
self.devices = []
def main(keep_vendor_list: set[int]):
vendors: list[PciVendorModel] = []
def main(keep_vendor_list: set):
vendors = []
try:
with open('pci.ids', 'r') as f:
full_text = f.read()