Skip to content

Commit fdda928

Browse files
committed
Add docstring describe purpose of function.
1 parent 5ed0568 commit fdda928

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pandas/io/excel/_odfreader.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,11 @@ def _get_cell_value(self, cell, convert_float: bool) -> Scalar:
183183
else:
184184
raise ValueError(f"Unrecognized type {cell_type}")
185185

186-
def _get_cell_string_value(self, cell):
186+
def _get_cell_string_value(self, cell) -> str:
187+
"""
188+
Find and decode OpenDocument text:s tags that represent
189+
a run length encoded sequence of space characters.
190+
"""
187191
from odf.element import Text, Element
188192
from odf.text import S, P
189193
from odf.namespaces import TEXTNS

0 commit comments

Comments
 (0)