Skip to content

Commit 2a0d146

Browse files
authored
Merge pull request #792 from Labelbox/fix_lint
fix lint
2 parents f77c625 + 8db43d2 commit 2a0d146

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

labelbox/orm/db_object.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ def __str__(self):
9393
attribute_values = {
9494
field.name: getattr(self, field.name) for field in self.fields()
9595
}
96-
return "<%s %s>" % (self.type_name().split(".")[-1], json.dumps(attribute_values, indent=4, default=str))
96+
return "<%s %s>" % (self.type_name().split(".")[-1],
97+
json.dumps(attribute_values, indent=4, default=str))
9798

9899
def __eq__(self, other):
99100
return (isinstance(other, DbObject) and

0 commit comments

Comments
 (0)