Skip to content

Commit a9c5b35

Browse files
committed
Merge branch 'feat-making-global-context-accessible-for-users' of https://github.com/jsai28/datafusion-python into feat-making-global-context-accessible-for-users
2 parents 9e90b81 + 14ee8b3 commit a9c5b35

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

python/datafusion/context.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -812,11 +812,9 @@ def register_parquet(
812812
file_extension,
813813
skip_metadata,
814814
schema,
815-
(
816-
[sort_list_to_raw_sort_list(exprs) for exprs in file_sort_order]
817-
if file_sort_order is not None
818-
else None
819-
),
815+
[sort_list_to_raw_sort_list(exprs) for exprs in file_sort_order]
816+
if file_sort_order is not None
817+
else None,
820818
)
821819

822820
def register_csv(

0 commit comments

Comments
 (0)