update HTML + changes made to queueing example during tutorial
This commit is contained in:
parent
94b3b47e87
commit
7230fcf584
4 changed files with 37 additions and 24 deletions
|
|
@ -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})"
|
||||
Loading…
Add table
Add a link
Reference in a new issue