mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-07 14:45:18 +00:00
Merge pull request #226 from jix/python36-fstrings
Do not use fstring syntax that requires Python 3.8
This commit is contained in:
commit
4c44a10f72
|
@ -125,7 +125,7 @@ class SbyJobLease:
|
||||||
self.is_done = True
|
self.is_done = True
|
||||||
|
|
||||||
def __repr__(self):
|
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):
|
def __del__(self):
|
||||||
self.done()
|
self.done()
|
||||||
|
|
Loading…
Reference in a new issue