Fix some cocotb 2.0 warnings
Some checks failed
build / Build distributions (push) Successful in 8s
build / deploy (push) Has been skipped
Regression Tests / Python 3.10 (push) Has been cancelled
Regression Tests / Python 3.11 (push) Has been cancelled
Regression Tests / Python 3.12 (push) Has been cancelled
Regression Tests / Python 3.13 (push) Has been cancelled
Regression Tests / Python 3.8 (push) Has been cancelled
Regression Tests / Python 3.9 (push) Has been cancelled

This commit is contained in:
2026-02-08 13:12:01 -08:00
parent aa3605a55c
commit 9f8d271384
2 changed files with 10 additions and 7 deletions

View File

@@ -56,7 +56,7 @@ class Reset:
async def _run_reset(self, reset_signal, active_level):
while True:
await Edge(reset_signal)
await reset_signal.value_change
try:
level = bool(int(reset_signal.value))
except ValueError: