mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-19 22:00:00 +10:00
Fix Constants type suggestion
This commit is contained in:
@@ -11,8 +11,9 @@ from data import model_array
|
||||
|
||||
# Generic building args
|
||||
class arguments:
|
||||
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
|
||||
|
||||
self.args = utilities.check_cli_args()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user