@@ -9,17 +9,17 @@ ABSOLUTE_RE: Any
9
9
SHEET_TITLE : str
10
10
SHEETRANGE_RE : Any
11
11
12
- def get_column_interval (start , end ) : ...
13
- def coordinate_from_string (coord_string ) : ...
14
- def absolute_coordinate (coord_string ) : ...
12
+ def get_column_interval (start : str | int , end : str | int ) -> list [ str ] : ...
13
+ def coordinate_from_string (coord_string : str ) -> tuple [ str , int ] : ...
14
+ def absolute_coordinate (coord_string : str ) -> str : ...
15
15
16
16
col : Any
17
17
18
- def get_column_letter (idx ) : ...
19
- def column_index_from_string (str_col ) : ...
20
- def range_boundaries (range_string ) : ...
18
+ def get_column_letter (idx : int ) -> str : ...
19
+ def column_index_from_string (str_col : str ) -> int : ...
20
+ def range_boundaries (range_string : str ) -> tuple [ int , int , int , int ] : ...
21
21
def rows_from_range (range_string ) -> Generator [Any , None , None ]: ...
22
22
def cols_from_range (range_string ) -> Generator [Any , None , None ]: ...
23
- def coordinate_to_tuple (coordinate ) : ...
24
- def range_to_tuple (range_string ) : ...
25
- def quote_sheetname (sheetname ) : ...
23
+ def coordinate_to_tuple (coordinate : str ) -> tuple [ int , int ] : ...
24
+ def range_to_tuple (range_string : str ) -> tuple [ str , tuple [ int , int , int , int ]] : ...
25
+ def quote_sheetname (sheetname : str ) -> str : ...
0 commit comments