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
...@@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### ### Fixed ###
- Json schema exporter handles reference properties better. - Json schema exporter handles reference properties better.
- `to_table` failed on lists as values.
### Security ### ### Security ###
......
...@@ -66,7 +66,7 @@ def to_table(container): ...@@ -66,7 +66,7 @@ def to_table(container):
for p in rec.get_properties(): 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 return df
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment