architecture,distribution,subsystem
This commit is contained in:
parent
9cd6155f8c
commit
f849bca87c
3 changed files with 48 additions and 0 deletions
12
distribution.py
Normal file
12
distribution.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
import os
|
||||
|
||||
|
||||
class Distribution:
|
||||
def __init__(self, architecture):
|
||||
self.architecture = architecture
|
||||
|
||||
def __str__(self):
|
||||
lines = [
|
||||
f'Architecture: {self.architecture.name}',
|
||||
]
|
||||
return os.linesep.join(lines)
|
Loading…
Add table
Add a link
Reference in a new issue