Skip to content

Commit 87b7da2

Browse files
dhirschfeldDavid Hirschfeld
authored and
David Hirschfeld
committed
Fix typo
1 parent a453ce4 commit 87b7da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tseries/holiday.py

Lines changed: 1 addition & 1 deletion
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)