Skip to content

Commit

Permalink
at least the get_dataframe errors should be fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
MoritzNeuberger committed Nov 30, 2023
1 parent 7857cb3 commit 16db16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lgdo/types/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def __str__(self):
opts["index"] = False

try:
string = self.get_dataframe().to_string(**opts)
string = self.view_as("pd").to_string(**opts)
except ValueError:
string = "Cannot print Table with VectorOfVectors yet!"

Expand Down

0 comments on commit 16db16f

Please sign in to comment.