Skip to content

Commit 8db43d2

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

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

labelbox/orm/db_object.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,7 @@ 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)
98-
99-
100-
101-
)
97+
json.dumps(attribute_values, indent=4, default=str))
10298

10399
def __eq__(self, other):
104100
return (isinstance(other, DbObject) and

0 commit comments

Comments
 (0)