Skip to content

Commit ba32cca

Browse files
committed
f-string fixup for python<3.8
1 parent 9ee1641 commit ba32cca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openeo/rest/_testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def get_pg(self, process_id: Optional[str] = None) -> dict:
108108
found = [node for node in pg.values() if node.get("process_id") == process_id]
109109
if len(found) != 1:
110110
raise RuntimeError(
111-
f"Expected single process graph node with {process_id=}, but found {len(found)}: {found}"
111+
f"Expected single process graph node with process_id {process_id!r}, but found {len(found)}: {found}"
112112
)
113113
return found[0]
114114
return pg

0 commit comments

Comments
 (0)