We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f963ac7 commit 1103e5dCopy full SHA for 1103e5d
backend/analytics_server/mhq/service/code/sync/etl_github_handler.py
@@ -114,7 +114,9 @@ def get_repo_pull_requests_data(
114
115
if prs[-1].updated_at.replace(tzinfo=pytz.UTC) <= bookmark:
116
prs_to_process += [
117
- pr for pr in prs if pr.updated_at.replace(tzinfo=pytz.UTC) > bookmark
+ pr
118
+ for pr in prs
119
+ if pr.updated_at.replace(tzinfo=pytz.UTC) > bookmark
120
]
121
break
122
0 commit comments