File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed
Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 3535from .context import (
3636 DataframeDisplayConfig ,
3737 RuntimeEnvBuilder ,
38- SQLOptions ,
3938 SessionConfig ,
4039 SessionContext ,
40+ SQLOptions ,
4141)
4242from .dataframe import DataFrame
4343from .expr import Expr , WindowFrame
Original file line number Diff line number Diff line change 2626except ImportError :
2727 from typing_extensions import deprecated # Python 3.12
2828
29- if TYPE_CHECKING :
30- import pandas as pd
31- import pathlib
32- import polars as pl
33- import pyarrow as pa
34-
35- from datafusion .plan import ExecutionPlan , LogicalPlan
36-
3729from datafusion .catalog import Catalog , Table
3830from datafusion .dataframe import DataFrame
3931from datafusion .expr import Expr , SortExpr , sort_list_to_raw_sort_list
4234
4335from ._internal import DataframeDisplayConfig as DataframeDisplayConfigInternal
4436from ._internal import RuntimeEnvBuilder as RuntimeEnvBuilderInternal
45- from ._internal import SQLOptions as SQLOptionsInternal
4637from ._internal import SessionConfig as SessionConfigInternal
4738from ._internal import SessionContext as SessionContextInternal
39+ from ._internal import SQLOptions as SQLOptionsInternal
40+
41+ if TYPE_CHECKING :
42+ import pathlib
43+
44+ import pandas as pd
45+ import polars as pl
46+ import pyarrow as pa
47+
48+ from datafusion .plan import ExecutionPlan , LogicalPlan
4849
4950
5051class ArrowStreamExportable (Protocol ):
You can’t perform that action at this time.
0 commit comments