Skip to content

Commit

Permalink
ref: fix num_comments typing in migrations again
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile-sentry committed Jul 22, 2024
1 parent 8df75b6 commit 424f31b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _bulk_retrieve_group_values(group_ids: list[int], Group: type[Group]) -> lis
status=group_values["status"],
substatus=group_values["substatus"],
first_seen=group_values["first_seen"],
num_comments=group_values["num_comments"],
num_comments=group_values["num_comments"] or 0,
priority=group_values["priority"],
first_release_id=(group_values["first_release"] or None),
)
Expand Down

0 comments on commit 424f31b

Please sign in to comment.