Skip to content

Commit

Permalink
SNOW-1665707: Move general.py into src/…/modin/plugin/extensions/
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-helmeleegy committed Sep 16, 2024
1 parent 64ced96 commit 32e81b7
Show file tree
Hide file tree
Showing 2 changed files with 2,146 additions and 2,124 deletions.
52 changes: 26 additions & 26 deletions src/snowflake/snowpark/modin/pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,32 +95,6 @@
register_dataframe_accessor,
register_series_accessor,
)
from snowflake.snowpark.modin.pandas.general import (
bdate_range,
concat,
crosstab,
cut,
date_range,
get_dummies,
isna,
isnull,
lreshape,
melt,
merge,
merge_asof,
merge_ordered,
notna,
notnull,
pivot,
pivot_table,
qcut,
to_datetime,
to_numeric,
to_timedelta,
unique,
value_counts,
wide_to_long,
)
from snowflake.snowpark.modin.pandas.io import ( # read_json is provided by overrides module
ExcelFile,
HDFStore,
Expand Down Expand Up @@ -151,6 +125,32 @@
TELEMETRY_PRIVATE_METHODS,
try_add_telemetry_to_attribute,
)
from snowflake.snowpark.modin.plugin.extensions.general import (
bdate_range,
concat,
crosstab,
cut,
date_range,
get_dummies,
isna,
isnull,
lreshape,
melt,
merge,
merge_asof,
merge_ordered,
notna,
notnull,
pivot,
pivot_table,
qcut,
to_datetime,
to_numeric,
to_timedelta,
unique,
value_counts,
wide_to_long,
)
from snowflake.snowpark.modin.plugin.utils.frontend_constants import _ATTRS_NO_LOOKUP

# The extensions assigned to this module
Expand Down
Loading

0 comments on commit 32e81b7

Please sign in to comment.