Add type hints for get_bdates_from_col_hv and get_period_indices_hv methods

This commit is contained in:
Palash Tyagi 2025-04-06 05:14:09 +01:00
parent 48fe8db61e
commit 8ce7c7b6e4

View File

@ -1,4 +1,4 @@
from polars import DataFrame from polars import DataFrame, Series
__all__ = [ __all__ = [
"download", "download",
@ -38,3 +38,10 @@ class panel:
@staticmethod @staticmethod
def historic_vol(*args, **kwargs) -> DataFrame: ... def historic_vol(*args, **kwargs) -> DataFrame: ...
@staticmethod
def get_bdates_from_col_hv(*args, **kwargs) -> Series: ...
@staticmethod
def get_period_indices_hv(*args, **kwargs) -> Series: ...