TheNeuralBit commented on a change in pull request #13401: URL: https://github.com/apache/beam/pull/13401#discussion_r529106679
########## File path: sdks/python/apache_beam/dataframe/frames.py ########## @@ -1401,17 +1403,20 @@ def replace(self, limit, **kwargs): def reset_index(self, level=None, **kwargs): if level is not None and not isinstance(level, (tuple, list)): level = [level] + if level is None or len(level) == self._expr.proxy().index.nlevels: # TODO: Could do distributed re-index with offsets. requires_partition_by = partitionings.Singleton() else: requires_partition_by = partitionings.Nothing() + + Review comment: I think this was me, removed it ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org