File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -395,8 +395,8 @@ def test_cumprod(self, datetime_series):
395395
396396 def test_cummin (self , datetime_series ):
397397 tm .assert_numpy_array_equal (datetime_series .cummin ().values ,
398- np .minimum . accumulate (
399- np .array (datetime_series )))
398+ np .minimum
399+ . accumulate ( np .array (datetime_series )))
400400 ts = datetime_series .copy ()
401401 ts [::2 ] = np .NaN
402402 result = ts .cummin ()[1 ::2 ]
@@ -406,8 +406,8 @@ def test_cummin(self, datetime_series):
406406
407407 def test_cummax (self , datetime_series ):
408408 tm .assert_numpy_array_equal (datetime_series .cummax ().values ,
409- np .maximum . accumulate (
410- np .array (datetime_series )))
409+ np .maximum
410+ . accumulate ( np .array (datetime_series )))
411411 ts = datetime_series .copy ()
412412 ts [::2 ] = np .NaN
413413 result = ts .cummax ()[1 ::2 ]
You can’t perform that action at this time.
0 commit comments