Skip to content

Commit ee73148

Browse files
fix "Possibly using variable 'start' / 'finish' before assignment"
1 parent c232b3b commit ee73148

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ def main():
6161
csv_name = args.out
6262
path_drepo = args.download_repos
6363
fork_flag = args.forks_include
64-
log_pr_comments = args.pr_comments
64+
log_pr_comments = args.pr_comments
65+
start, finish = None, None
66+
6567
try:
6668
client = git_logger.login(token=token)
6769
except Exception as e:

0 commit comments

Comments
 (0)