mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-22 21:05:30 +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:
parent
544a1cb369
commit
beb8b3c6e3
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue