Skip to content

Commit 9b2084f

Browse files
committed
Bring special close day names in line with other calendars.
1 parent 3935345 commit 9b2084f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

trading_calendars/exchange_calendar_xlon.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
# If Christmas Eve falls on a weekday, that day is a half day.
129129
# If it falls on a weekend, the preceding Friday is a half day.
130130
ChristmasEve = Holiday(
131-
'Christmas Eve Early Close',
131+
'Christmas Eve',
132132
month=12,
133133
day=24,
134134
observance=previous_friday,
@@ -137,14 +137,14 @@
137137
# is a half day. Except for 1999-12-31, when the Queen declared a
138138
# bank holiday.
139139
NewYearsEvePre1999 = Holiday(
140-
"New Year's Eve Early Close",
140+
"New Year's Eve",
141141
month=12,
142142
day=31,
143143
observance=previous_friday,
144144
end_date=pd.Timestamp('1999-01-01')
145145
)
146146
NewYearsEvePost2000 = Holiday(
147-
"New Year's Eve Early Close",
147+
"New Year's Eve",
148148
month=12,
149149
day=31,
150150
observance=previous_friday,

0 commit comments

Comments
 (0)