update HTML + changes made to queueing example during tutorial

This commit is contained in:
Joeri Exelmans 2024-12-13 16:57:06 +01:00
parent 94b3b47e87
commit 7230fcf584
4 changed files with 37 additions and 24 deletions

View file

@ -3,3 +3,6 @@ class Job:
# Jobs have a size and creation_time parameter
self.size = size
self.creation_time = creation_time
def __repr__(self):
return f"Job(size={self.size},creation_time={self.creation_time})"