Skip to content

Commit 6576eed

Browse files
author
Dmitriy Apollonin
committed
fix lint
1 parent af789f9 commit 6576eed

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

labelbox/orm/db_object.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ def __str__(self):
9494
field.name: getattr(self, field.name) for field in self.fields()
9595
}
9696
return "<%s %s>" % (self.type_name().split(".")[-1],
97-
json.dumps(attribute_values, indent=4, default=str))
97+
json.dumps(attribute_values, indent=4, default=str)
98+
99+
100+
101+
)
98102

99103
def __eq__(self, other):
100104
return (isinstance(other, DbObject) and

0 commit comments

Comments
 (0)