Skip to content

Commit 1103e5d

Browse files
committed
fix(timestamp): code formatted with black integration
1 parent f963ac7 commit 1103e5d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

backend/analytics_server/mhq/service/code/sync/etl_github_handler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ def get_repo_pull_requests_data(
114114

115115
if prs[-1].updated_at.replace(tzinfo=pytz.UTC) <= bookmark:
116116
prs_to_process += [
117-
pr for pr in prs if pr.updated_at.replace(tzinfo=pytz.UTC) > bookmark
117+
pr
118+
for pr in prs
119+
if pr.updated_at.replace(tzinfo=pytz.UTC) > bookmark
118120
]
119121
break
120122

0 commit comments

Comments
 (0)