Update ruff to much newer version (#9433)

Includes a multidict patch release to fix build with newer cpython.
This commit is contained in:
Folke Behrens
2024-10-18 12:42:41 +02:00
committed by GitHub
parent 98fee7a97d
commit 15fecffe6b
10 changed files with 145 additions and 122 deletions

View File

@@ -417,7 +417,7 @@ def wait_until(
time.sleep(interval)
continue
return res
raise Exception("timed out while waiting for %s" % func) from last_exception
raise Exception(f"timed out while waiting for {func}") from last_exception
def assert_eq(a, b) -> None: