diff --git a/pagure/lib/model.py b/pagure/lib/model.py index c4ea288..a09e5a6 100644 --- a/pagure/lib/model.py +++ b/pagure/lib/model.py @@ -698,7 +698,11 @@ class PullRequest(BASE): ''' Return the list of comments related to the pull-request itself, ie: not related to a specific commit. ''' - return [comment for comment in self.comments if not comment.commit_id] + return [ + comment + for comment in self.comments + if not comment.commit_id + ] @property def score(self):