Skip to content

Commit b1f8144

Browse files
committed
Fix linting; exceeded number of characters on one line
1 parent 259da7e commit b1f8144

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/frame/test_timeseries.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,8 @@ def test_asfreq_datetimeindex(self):
326326
def test_asfreq_datetimeindex_empty_series(self):
327327
# GH 14340
328328
empty = Series(index=pd.DatetimeIndex([])).asfreq('H')
329-
normal = Series(index=pd.DatetimeIndex(["2016-09-29 11:00"]), data=[3]).asfreq('H')
329+
normal = Series(index=pd.DatetimeIndex(["2016-09-29 11:00"]),
330+
data=[3]).asfreq('H')
330331
self.assertEqual(empty.index.freq, normal.index.freq)
331332

332333
def test_first_last_valid(self):

0 commit comments

Comments
 (0)