Skip to content
Snippets Groups Projects
Verified Commit 3d01edca authored by Daniel Hornung's avatar Daniel Hornung
Browse files

FIX: `to_table` failed on lists

parent a36c3319
No related branches found
No related tags found
2 merge requests!100WIP: Filling XLSX: Seems to be working.,!99FIX: `to_table` failed on lists
Pipeline #50254 passed with warnings
This commit is part of merge request !99. Comments created here will be created in the context of that merge request.
......@@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ###
- Json schema exporter handles reference properties better.
- `to_table` failed on lists as values.
### Security ###
......
......@@ -66,7 +66,7 @@ def to_table(container):
for p in rec.get_properties():
df.loc[ii, generate_property_name(p)] = p.value
df.at[ii, generate_property_name(p)] = p.value
return df
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment