3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Do not use fstring syntax that requires Python 3.8

While we most likely will require Python 3.8 going forward, this might
restore Python 3.6 compatibility until we update the installation guide.
This commit is contained in:
Jannis Harder 2022-12-19 16:49:37 +01:00
parent 544a1cb369
commit beb8b3c6e3

View file

@ -125,7 +125,7 @@ class SbyJobLease:
self.is_done = True
def __repr__(self):
return f"{self.is_ready=} {self.is_done=}"
return f"is_ready={self.is_ready} is_done={self.is_done}"
def __del__(self):
self.done()