merobi-hub commented on code in PR #31543:
URL: https://github.com/apache/airflow/pull/31543#discussion_r1207513651


##########
dev/stats/get_important_pr_candidates.py:
##########
@@ -282,7 +287,10 @@ def score(self):
         # Weight PRs with protm tags more heavily:
         # If there is at least one protm tag, multiply the interaction score 
by the number of tags, up to 3.
         interaction_score = self.interaction_score
-        interaction_score *= min(self.protm_score + 1, 3)
+        try:
+            interaction_score *= min(self.protm_score + 1, 3)
+        except AttributeError:

Review Comment:
   @jedcunningham  I was puzzled, too, but it did when I was loading PRs from a 
Pickle file. I could remove it until it happens again...  



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to