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

Commit a98faab

Browse files
committed
Fix lint
1 parent e3bcd5f commit a98faab

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

bigquery_magics/graph_server.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,7 @@ def convert_graph_params(params: Dict[str, Any]):
271271
)
272272
schema_json = params.get("schema")
273273
schema = json.loads(schema_json) if schema_json is not None else None
274-
return _convert_graph_data(
275-
query_results=query_results, schema=schema
276-
)
274+
return _convert_graph_data(query_results=query_results, schema=schema)
277275

278276

279277
class GraphServer:

0 commit comments

Comments
 (0)