Skip to content

Commit

Permalink
Automatic backup 2024-03-11
Browse files Browse the repository at this point in the history
  • Loading branch information
snejus committed Mar 12, 2024
1 parent 64a878d commit 9726658
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rich_tables/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,11 +358,11 @@ def make(cls, reviews: List[JSONDict], **kwargs: Any) -> "PullRequestTable":
comments=comments_by_review_id.get(r["id"], []),
)
for r in reviews
# if (
# # r["id"] in threads_by_review_id
# r["state"] != "COMMENTED"
# or r["body"]
# )
if (
r["id"] in threads_by_review_id
and r["state"] != "COMMENTED"
or r["body"]
)
]
return cls(**kwargs)

Expand Down

0 comments on commit 9726658

Please sign in to comment.