We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af789f9 commit 6576eedCopy full SHA for 6576eed
labelbox/orm/db_object.py
@@ -94,7 +94,11 @@ def __str__(self):
94
field.name: getattr(self, field.name) for field in self.fields()
95
}
96
return "<%s %s>" % (self.type_name().split(".")[-1],
97
- json.dumps(attribute_values, indent=4, default=str))
+ json.dumps(attribute_values, indent=4, default=str)
98
+
99
100
101
+ )
102
103
def __eq__(self, other):
104
return (isinstance(other, DbObject) and
0 commit comments