architectures

This commit is contained in:
Marc Beninca 2021-10-10 19:56:24 +02:00 committed by Marc Beninca
parent 6738c17522
commit 7800bb9175
2 changed files with 8 additions and 16 deletions

View file

@ -7,7 +7,7 @@ import arguments
class Repository:
def __init__(self, location):
self.location = location
self.architectures = [architecture.ARCHITECTURES[a]
self.architectures = [architecture.Architecture(self, a)
for a in arguments.architectures]
def __str__(self):