File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -571,6 +571,7 @@ def __init__(
571571 self ,
572572 config : SessionConfig | None = None ,
573573 runtime : RuntimeEnvBuilder | None = None ,
574+ display_config : DataframeDisplayConfig | None = None ,
574575 ) -> None :
575576 """Main interface for executing queries with DataFusion.
576577
@@ -594,7 +595,9 @@ def __init__(
594595 """
595596 config = config .config_internal if config is not None else None
596597 runtime = runtime .config_internal if runtime is not None else None
597- display_config = DataframeDisplayConfigInternal ()
598+ display_config = (
599+ display_config .config_internal if display_config is not None else None
600+ )
598601 self .ctx = SessionContextInternal (config , runtime , display_config )
599602
600603 @classmethod
You can’t perform that action at this time.
0 commit comments