Skip to content

Commit a334eab

Browse files
PEP8
1 parent 9c1e2dc commit a334eab

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pandas/tseries/tests/test_tslib.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,12 @@ def test_constructor_positional(self):
195195

196196
# GH 11630
197197
self.assertEqual(
198-
repr(Timestamp(2015, 11, 12)),
199-
repr(Timestamp('20151112')))
198+
repr(Timestamp(2015, 11, 12)),
199+
repr(Timestamp('20151112')))
200200

201201
self.assertEqual(
202-
repr(Timestamp(2015, 11, 12, 1, 2, 3, 999999)),
203-
repr(Timestamp('2015-11-12 01:02:03.999999')))
202+
repr(Timestamp(2015, 11, 12, 1, 2, 3, 999999)),
203+
repr(Timestamp('2015-11-12 01:02:03.999999')))
204204

205205
def test_constructor_keyword(self):
206206
# GH 10758
@@ -216,13 +216,13 @@ def test_constructor_keyword(self):
216216
Timestamp(year=2000, month=1, day=32)
217217

218218
self.assertEqual(
219-
repr(Timestamp(year=2015, month=11, day=12)),
220-
repr(Timestamp('20151112')))
219+
repr(Timestamp(year=2015, month=11, day=12)),
220+
repr(Timestamp('20151112')))
221221

222222
self.assertEqual(
223-
repr(Timestamp(year=2015, month=11, day=12,
224-
hour=1, minute=2, second=3, microsecond=999999)),
225-
repr(Timestamp('2015-11-12 01:02:03.999999')))
223+
repr(Timestamp(year=2015, month=11, day=12,
224+
hour=1, minute=2, second=3, microsecond=999999)),
225+
repr(Timestamp('2015-11-12 01:02:03.999999')))
226226

227227
def test_conversion(self):
228228
# GH 9255

0 commit comments

Comments
 (0)