We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d083d7f commit ea01b88Copy full SHA for ea01b88
prelude_parser/pandas.py
@@ -38,5 +38,5 @@ def to_dataframe(xml_file: str | Path, *, short_names: bool = False) -> pd.DataF
38
>>> from prelude_parser.pandas import to_dataframe
39
>>> df = to_dataframe("physical_examination.xml")
40
"""
41
- data = _parse_flat_file_to_pandas_dict(xml_file, short_names)
+ data = _parse_flat_file_to_pandas_dict(xml_file, short_names=short_names)
42
return pd.DataFrame.from_dict(data)
0 commit comments