You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the auto-generated __repr__ provided by attrs will dump out every annotation to stdout. This is technically correct but not very helpful
Might be good to
override the __repr__ for each class and use reprlib in it to get an abbreviated representation of attributes
possibly provide an even friendlier version with __str__? In some cases I think it might be good to have an almost human-readable summary of the annotations in the file, "TextGrid with 5 tiers" or something like that
The text was updated successfully, but these errors were encountered:
Right now if we just do something like
the auto-generated
__repr__
provided byattrs
will dump out every annotation tostdout
. This is technically correct but not very helpfulMight be good to
__repr__
for each class and usereprlib
in it to get an abbreviated representation of attributes__str__
? In some cases I think it might be good to have an almost human-readable summary of the annotations in the file, "TextGrid with 5 tiers" or something like thatThe text was updated successfully, but these errors were encountered: