Skip to content

Commit

Permalink
ref: fix num_comments typing in migrations again (#75110)
Browse files Browse the repository at this point in the history
<!-- Describe your PR here. -->
  • Loading branch information
asottile-sentry authored Jul 29, 2024
1 parent 9752d34 commit 7950cbd
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 7950cbd

Please sign in to comment.