Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
isVoid committed Aug 25, 2021
1 parent a713705 commit 5d085a3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions python/cudf/cudf/core/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,10 +547,7 @@ def deserialize(cls, header, frames):
column_names = pickle.loads(header["column_names"])
columns = column.deserialize_columns(header["columns"], column_frames)

return cls._from_data(
dict(zip(column_names, columns)),
index=index,
)
return cls._from_data(dict(zip(column_names, columns)), index=index,)

@property
def dtypes(self):
Expand Down

0 comments on commit 5d085a3

Please sign in to comment.