Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.

Commit c4f337f

Browse files
committed
Fix lint
1 parent bbd0741 commit c4f337f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/unit/test_graph_server.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,9 +470,11 @@ def test_post_ping(self):
470470
@pytest.mark.skipif(
471471
graph_visualization is None, reason="Requires `spanner-graph-notebook`"
472472
)
473-
def test_post_query(self):
473+
def test_post_query(self):
474474
self.assertTrue(self.server_thread.is_alive())
475-
graph_server.graph_server.query_result = pd.DataFrame([json.dumps(row_alex_owns_account)], columns=["result"])
475+
graph_server.graph_server.query_result = pd.DataFrame(
476+
[json.dumps(row_alex_owns_account)], columns=["result"]
477+
)
476478
route = graph_server.graph_server.build_route(
477479
graph_server.GraphServer.endpoints["post_query"]
478480
)

0 commit comments

Comments
 (0)