TheNeuralBit commented on a change in pull request #13932:
URL: https://github.com/apache/beam/pull/13932#discussion_r573173463
##########
File path: sdks/python/apache_beam/dataframe/frames_test.py
##########
@@ -405,6 +440,19 @@ def test_series_agg(self):
self._run_test(lambda s: s.agg(['mean']), s)
self._run_test(lambda s: s.agg('mean'), s)
+ def test_append_sort(self):
+ df1 = pd.DataFrame({'int': [1, 2, 3], 'str': ['a', 'b', 'c']},
Review comment:
yapf insists on really messing this up:
```suggestion
df1 = pd.DataFrame({
'int': [1, 2, 3], 'str': ['a', 'b', 'c']
},
```
I'd rather keep it as-is but not sure how to make yapf happy.
----------------------------------------------------------------
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:
[email protected]