lint
This commit is contained in:
parent
bb230e0c6d
commit
7033a6189e
3 changed files with 3 additions and 1 deletions
|
@ -20,6 +20,7 @@ class Architecture:
|
|||
]
|
||||
return os.linesep.join(lines)
|
||||
|
||||
|
||||
ARCHITECTURES = {
|
||||
X86: Architecture(X86, 64),
|
||||
I86: Architecture(I86, 32),
|
||||
|
|
|
@ -82,6 +82,7 @@ compression applying to archive
|
|||
|
||||
return vars(parser.parse_args())
|
||||
|
||||
|
||||
D = parse()
|
||||
|
||||
architectures = D[ARCHITECTURES]
|
||||
|
|
|
@ -6,7 +6,7 @@ FAMILIES = [MAIN, 'clang', 'mingw', 'ucrt']
|
|||
|
||||
|
||||
class SubSystem:
|
||||
def __init__(self, architecture):
|
||||
def __init__(self, architecture, name):
|
||||
self.architecture = architecture
|
||||
self.name = name
|
||||
|
||||
|
|
Loading…
Reference in a new issue