Skip to content

Commit

Permalink
DataFrame._data deprecation in pandas (#10081)
Browse files Browse the repository at this point in the history
Co-authored-by: James Bourbeau <jrbourbeau@gmail.com>
  • Loading branch information
j-bennet and jrbourbeau committed Mar 17, 2023
1 parent 2f21123 commit 37c7afb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dask/base.py
Expand Up @@ -1141,8 +1141,7 @@ def normalize_series(s):

@normalize_token.register(pd.DataFrame)
def normalize_dataframe(df):
mgr = df._data

mgr = df._mgr
data = list(mgr.arrays) + [df.columns, df.index]
return list(map(normalize_token, data))

Expand Down

0 comments on commit 37c7afb

Please sign in to comment.