Skip to content

Commit

Permalink
add schema parameter to the repartition method (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
sararb committed Dec 29, 2022
1 parent c2ef3f0 commit 2fc6889
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion merlin/io/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,8 @@ def repartition(self, npartitions=None, partition_size=None):
.repartition(
npartitions=npartitions,
partition_size=partition_size,
)
),
schema=self.schema,
)

@classmethod
Expand Down

0 comments on commit 2fc6889

Please sign in to comment.