We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ee1641 commit ba32ccaCopy full SHA for ba32cca
openeo/rest/_testing.py
@@ -108,7 +108,7 @@ def get_pg(self, process_id: Optional[str] = None) -> dict:
108
found = [node for node in pg.values() if node.get("process_id") == process_id]
109
if len(found) != 1:
110
raise RuntimeError(
111
- f"Expected single process graph node with {process_id=}, but found {len(found)}: {found}"
+ f"Expected single process graph node with process_id {process_id!r}, but found {len(found)}: {found}"
112
)
113
return found[0]
114
return pg
0 commit comments