From 1ffdb7de707aa830dffff374fec187c98c5ef256 Mon Sep 17 00:00:00 2001 From: Chip Kent <5250374+chipkent@users.noreply.github.com> Date: Wed, 13 Dec 2023 08:44:28 -0700 Subject: [PATCH] Update py/server/deephaven/calendar.py Co-authored-by: JJ Brosnan <84038776+jjbrosnan@users.noreply.github.com> --- py/server/deephaven/calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/server/deephaven/calendar.py b/py/server/deephaven/calendar.py index d01f8f620ee..9815dd2e9e3 100644 --- a/py/server/deephaven/calendar.py +++ b/py/server/deephaven/calendar.py @@ -104,7 +104,7 @@ def calendar_name() -> str: def calendar(name: Optional[str] = None) -> BusinessCalendar: """ Returns the calendar with the given name. - The returned calendar is a 'io.deephaven.time.calendar.BusinessCalendar' Java object that can be used in Python. + The returned calendar is an 'io.deephaven.time.calendar.BusinessCalendar' Java object that can be used in Python. For details on the available methods, see https://deephaven.io/core/javadoc/io/deephaven/time/calendar/BusinessCalendar.html. These methods must be called with string arguments or with Java date-time objects. To convert Python date-time objects to Java date-time objects, use the conversion functions in the 'deephaven.time' module.