Skip to content

Commit 8bf1489

Browse files
committed
removing unneccessary commas
1 parent 641dcd2 commit 8bf1489

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/superannotate/lib/app/analytics/aggregators.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -512,11 +512,11 @@ def __fill_user_metadata(row_data, annotation):
512512
if annotation_updated_by:
513513
annotation_updator_email = annotation_updated_by.get("email")
514514
annotation_updator_role = annotation_updated_by.get("role")
515-
row_data.createdAt = annotation_created_at,
516-
row_data.creatorRole = annotation_creator_role,
517-
row_data.creatorEmail = annotation_creator_email,
518-
row_data.creationType = annotation_creation_type,
519-
row_data.updatedAt = annotation_updated_at,
520-
row_data.updatorRole = annotation_updator_role,
515+
row_data.createdAt = annotation_created_at
516+
row_data.creatorRole = annotation_creator_role
517+
row_data.creatorEmail = annotation_creator_email
518+
row_data.creationType = annotation_creation_type
519+
row_data.updatedAt = annotation_updated_at
520+
row_data.updatorRole = annotation_updator_role
521521
row_data.updatorEmail = annotation_updator_email
522522
return row_data

0 commit comments

Comments
 (0)