3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +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:
Jannis Harder 2022-12-19 17:28:04 +01:00 committed by GitHub
commit 4c44a10f72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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()