fixed rookie mistakes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-03 22:31:33 +01:00
parent 35a68fe549
commit a9f473e2d9
8 changed files with 100 additions and 28 deletions

View File

@@ -1,8 +1,10 @@
class ApplicationModule:
bwRequirement: int = 0
cpuRequirement: int = 0
def __init__(self):
self.bwRequirement: int = 0
self.cpuRequirement: int = 0
class Application:
name: str = ""
modules: list[ApplicationModule] = []
def __init__(self):
self.name: str = ""
self.modules: list[ApplicationModule] = []