add __repr__
to schema class so a print()
call is not needed to represent the schema
#299
Labels
enhancement 💡
New feature or request
Is your feature request related to a problem? Please describe
At the moment we need to call the
print()
-function if we want a short representation of the schema. Also each column creates a own line, which makes the output very long.Desired solution
It should be possible to just call
table.schema
, which should create an output like this.At the moment the Code looks like this:
print(table.schema.__str__())
and creates the following output. -->This will make the Useability with Notebooks better.
Possible alternatives (optional)
Screenshots (optional)
Additional context (optional)
The text was updated successfully, but these errors were encountered: