Skip to content

Commit

Permalink
Merge pull request #259 from chdb-io/fix-global-import
Browse files Browse the repository at this point in the history
Fix global import dataframe
  • Loading branch information
auxten authored Aug 22, 2024
2 parents 602dad6 + f7b3987 commit e5953ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions chdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def query(sql, output_format="CSV", path="", udf_path=""):

PyReader = _chdb.PyReader

from . import dataframe, dbapi, session, udf, utils # noqa: E402
from . import dbapi, session, udf, utils # noqa: E402

__all__ = [
"PyReader",
Expand All @@ -95,7 +95,6 @@ def query(sql, output_format="CSV", path="", udf_path=""):
"engine_version",
"to_df",
"to_arrowTable",
"dataframe",
"dbapi",
"session",
"udf",
Expand Down

0 comments on commit e5953ba

Please sign in to comment.