Skip to content

Commit e62763c

Browse files
author
Carlos Souza
committed
Fixing PEP8 line indent
1 parent 080c71e commit e62763c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/series/test_replace.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_replace_gh5319(self):
100100
expected = ser.copy()
101101
expected.loc[2] = pd.Timestamp('20120101')
102102
result = ser.replace({pd.Timestamp('20130103'):
103-
pd.Timestamp('20120101')})
103+
pd.Timestamp('20120101')})
104104
tm.assert_series_equal(result, expected)
105105
result = ser.replace(pd.Timestamp('20130103'),
106106
pd.Timestamp('20120101'))

0 commit comments

Comments
 (0)