From ba558e9956ebc8baaf8bede6285a5ebb3b89f0ea Mon Sep 17 00:00:00 2001 From: JJ Brosnan <84038776+jjbrosnan@users.noreply.github.com> Date: Wed, 24 Jan 2024 14:07:14 -0500 Subject: [PATCH] Update README.md (#108) --- Calendar/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Calendar/README.md b/Calendar/README.md index d21a9d3..7e9a3f0 100644 --- a/Calendar/README.md +++ b/Calendar/README.md @@ -12,14 +12,14 @@ A calendar file can be used by Deephaven's calendar API to add a custom calendar ## Use a custom calendar -Here's an example of the documentation for using a custom calendar: +Here's an example that uses the calendar. It assumes you've copied this file to your local Deephaven installation. ```python from deephaven.calendar import add_calendar, calendar, calendar_names -add_calendar("https://media.githubusercontent.com/media/deephaven/examples/main/Calendar/CompanyY_2024.calendar") +add_calendar("/data/examples/Calendar/CompanyY_2024.calendar") print(calendar_names()) company_y_cal_2024 = calendar("CompanyY_2024") -``` \ No newline at end of file +```