Skip to content

Commit 4074ca4

Browse files
committed
fix lint
1 parent 8f841e5 commit 4074ca4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bigframes/operations/output_schemas.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ def parse_sql_type(sql: str) -> pa.DataType:
4949

5050
if sql.startswith("STRUCT<") and sql.endswith(">"):
5151
inner_fields = parse_sql_fields(sql[len("STRUCT<") : -1])
52-
53-
return pa.struct(sorted(inner_fields, key=lambda f:f.name))
52+
return pa.struct(sorted(inner_fields, key=lambda f: f.name))
5453

5554
raise ValueError(f"Unsupported SQL type: {sql}")
5655

0 commit comments

Comments
 (0)