Skip to content

Commit ea01b88

Browse files
committed
Fix mypy error
1 parent d083d7f commit ea01b88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prelude_parser/pandas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ def to_dataframe(xml_file: str | Path, *, short_names: bool = False) -> pd.DataF
3838
>>> from prelude_parser.pandas import to_dataframe
3939
>>> df = to_dataframe("physical_examination.xml")
4040
"""
41-
data = _parse_flat_file_to_pandas_dict(xml_file, short_names)
41+
data = _parse_flat_file_to_pandas_dict(xml_file, short_names=short_names)
4242
return pd.DataFrame.from_dict(data)

0 commit comments

Comments
 (0)