Skip to main content
Version: Python

remove_calendar

The remove_calendar method removes the specified calendar from the available calendars.

Syntax

remove_calendar(name: str) -> None

Parameters

ParameterTypeDescription
namestr

The name of the calendar to remove.

Returns

None.

Example

The following example removes the USBANK_EXAMPLE calendar from the list of usable calendars.

from deephaven.calendar import remove_calendar

remove_calendar("USBANK_EXAMPLE")