remove_calendar
The remove_calendar method removes the specified calendar from the available calendars.
Syntax
remove_calendar(name: str) -> None
Parameters
| Parameter | Type | Description |
|---|---|---|
| name | str | 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")