Skip to content
Snippets Groups Projects

FIX: `to_table` failed on lists

Merged Daniel Hornung requested to merge f-fix-table-converter-list into dev
All threads resolved!
3 files
+ 6
3
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -52,8 +52,7 @@ def to_table(container):
"""Create a table from the records in a container."""
if len(container) == 0:
raise ValueError("Container is empty")
# TODO Why not this? return pd.DataFrame()
return pd.DataFrame()
rts = {p.name for p in container[0].parents}
data = []
Loading