comments models

This commit is contained in:
Zakhar
2026-09-26 00:01:12 +03:00
parent e968ab8d1e
commit dd211e6b9b
+1 -1
View File
@@ -485,7 +485,7 @@ Now produce the JSON for the issue above.
def prior_comment_id(issue: IssueContext) -> str:
for c in reversed(issue.comments):
if TriageMarker.parse(c['body']):
if TriageMarker.parse(c.body):
return c['id']
return ""