Skip to content

Commit

Permalink
[CHORE]: Move daft.sql.sql module to daft.sql (#2907)
Browse files Browse the repository at this point in the history
see title
  • Loading branch information
universalmind303 authored Sep 24, 2024
1 parent 5be0508 commit 8307b6b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion daft/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def refresh_logger() -> None:
read_lance,
)
from daft.series import Series
from daft.sql.sql import sql, sql_expr
from daft.sql import sql, sql_expr
from daft.udf import udf
from daft.viz import register_viz_hook

Expand Down
7 changes: 7 additions & 0 deletions daft/sql/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from .sql import SQLCatalog, sql, sql_expr

__all__ = [
"SQLCatalog",
"sql",
"sql_expr",
]

0 comments on commit 8307b6b

Please sign in to comment.