Skip to content

Commit b1bf41c

Browse files
authored
Update calendar data (#111)
* Update name and just call it a test calendar * Remove ref to company y or any company name
1 parent d2ff4f6 commit b1bf41c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Calendar/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This folder contains a calendar file in XML format.
44

55
## Table of contents
66

7-
`CompanyY_2024.calendar`: A calendar file for a hypothetical company, `Company Y`, in XML format.
7+
`TestCalendar_2024.calendar`: A test calendar XML file.
88

99
## Calendar file
1010

@@ -17,9 +17,9 @@ Here's an example that uses the calendar. It assumes you've copied this file to
1717
```python
1818
from deephaven.calendar import add_calendar, calendar, calendar_names
1919

20-
add_calendar("/data/examples/Calendar/CompanyY_2024.calendar")
20+
add_calendar("/data/examples/Calendar/TestCalendar_2024.calendar")
2121

2222
print(calendar_names())
2323

24-
company_y_cal_2024 = calendar("CompanyY_2024")
24+
test_company_cal_2024 = calendar("TestCalendar_2024")
2525
```
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<calendar>
2-
<name>CompanyY_2024</name>
2+
<name>TestCalendar_2024</name>
33
<timeZone>America/New_York</timeZone>
44
<language>en</language>
55
<country>US</country>
66
<firstValidDate>2024-01-01</firstValidDate>
77
<lastValidDate>2024-12-31</lastValidDate>
88
<description>
9-
Company Y calendar for the year 2024.
10-
Company Y uses two business periods instead of one.
9+
Test calendar for the year 2024.
10+
This calendar uses two business periods instead of one.
1111
The periods are separated by a one hour lunch break.
1212
This calendar file defines standard business hours, weekends, and holidays.
1313
</description>

0 commit comments

Comments
 (0)