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 6576eed commit 8db43d2Copy full SHA for 8db43d2
labelbox/orm/db_object.py
@@ -94,11 +94,7 @@ 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)
98
-
99
100
101
- )
+ json.dumps(attribute_values, indent=4, default=str))
102
103
def __eq__(self, other):
104
return (isinstance(other, DbObject) and
0 commit comments