Skip to content

Commit 67195f1

Browse files
authored
Update git_logger.py
1 parent d21a611 commit 67195f1

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

git_logger.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
from github import Github, Repository, GithubException, PullRequest
77

88
EMPTY_FIELD = 'Empty field'
9-
109
timedelta = 0.05
11-
12-
1310
timezone = 'Europe/Moscow'
1411

1512

@@ -387,10 +384,6 @@ def log_pull_requests(client: Github, repositories, csv_name, token, start, fini
387384
print(e)
388385

389386

390-
391-
392-
393-
394387
def log_issues(client: Github, repositories, csv_name, token, start, finish):
395388
with open(csv_name, 'w', newline='') as file:
396389
writer = csv.writer(file)
@@ -429,10 +422,6 @@ def log_issues(client: Github, repositories, csv_name, token, start, finish):
429422
print(e)
430423

431424

432-
433-
aq
434-
435-
436425
def log_commits(client: Github, repositories, csv_name, start, finish):
437426
with open(csv_name, 'w', newline='') as file:
438427
writer = csv.writer(file)
@@ -455,6 +444,3 @@ def log_commits(client: Github, repositories, csv_name, start, finish):
455444
sleep(timedelta)
456445
except e:
457446
print(e)
458-
459-
460-

0 commit comments

Comments
 (0)