Skip to content

Commit d4c37f5

Browse files
authored
Fix typo
1 parent aa664ff commit d4c37f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tseries/holiday.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ def holidays(self, start=None, end=None, return_name=False):
412412
# get them again
413413
if self._cache is None or start < self._cache[0] or end > self._cache[1]:
414414
for rule in self.rules:
415-
holidays.append(rule.dates(start, end, return_name=True)
415+
holidays.append(rule.dates(start, end, return_name=True))
416416

417417
if holidays:
418418
holidays = concat(holidays)

0 commit comments

Comments
 (0)