From 8ce7c7b6e4c8ae8c641990c605522795951609eb Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 6 Apr 2025 05:14:09 +0100 Subject: [PATCH] Add type hints for `get_bdates_from_col_hv` and `get_period_indices_hv` methods --- src/msyrs.pyi | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/msyrs.pyi b/src/msyrs.pyi index 0c8e2c2..f7ac740 100644 --- a/src/msyrs.pyi +++ b/src/msyrs.pyi @@ -1,4 +1,4 @@ -from polars import DataFrame +from polars import DataFrame, Series __all__ = [ "download", @@ -38,3 +38,10 @@ class panel: @staticmethod 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: ... + \ No newline at end of file