chore: cleanup pycodestyle E rules (#8269)

This commit is contained in:
Bowen Liang 2024-09-11 18:55:00 +08:00 committed by GitHub
commit 781d294f49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 25 additions and 24 deletions

View file

@ -247,9 +247,9 @@ def test_parallels_graph():
for i in range(3):
start_edges = graph.edge_mapping.get("start")
assert start_edges is not None
assert start_edges[i].target_node_id == f"llm{i+1}"
assert start_edges[i].target_node_id == f"llm{i + 1}"
llm_edges = graph.edge_mapping.get(f"llm{i+1}")
llm_edges = graph.edge_mapping.get(f"llm{i + 1}")
assert llm_edges is not None
assert llm_edges[0].target_node_id == "answer"