Jacob Blanco
05/02/2024, 4:42 AMruntime.flow_run
does not have the account information, which is why I'm using the client. Is there an even better way to get this information?
Minimal example that's returning too many flow runs:
flow_runs: list[FlowRun] = await client.read_flow_runs(
flow_run_filter=FlowRunFilter(
id=FlowRunFilterId(_any=list(runtime.flow_run.id))
)
)
Any ideas?
Nevermind found the issue: _any
vs any_
.