Fix Constants type suggestion

This commit is contained in:
Mykola Grymalyuk
2023-02-09 17:59:53 -07:00
parent 66a5f5a9ad
commit e83e260db7
12 changed files with 39 additions and 29 deletions

View File

@@ -14,8 +14,8 @@ from resources import bplist, constants, generate_smbios, utilities
class sys_patch_helpers:
def __init__(self, global_constants: constants.Constants()):
self.constants: constants.Constants() = global_constants
def __init__(self, global_constants: constants.Constants):
self.constants: constants.Constants = global_constants
def snb_board_id_patch(self, source_files_path):