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

@@ -5,9 +5,7 @@ from datacentre import Datacentre
class Scheduler:
clients: list[Client] = []
cloud: Datacentre = Datacentre()
edge: Datacentre = Datacentre()
def createClients(self, numofClients: int = 1):
pass
def __init__(self):
self.clients: list[Client] = []
self.cloud: Datacentre = Datacentre()
self.edge: Datacentre = Datacentre()