From 80c5be7293293c29b3b12ae845172a2bab402ccc Mon Sep 17 00:00:00 2001 From: Maxim Efremov Date: Mon, 2 May 2022 13:30:35 +0600 Subject: [PATCH] Adding bots file type to reduce parsing issues --- my/github/gdpr.py | 1 + 1 file changed, 1 insertion(+) diff --git a/my/github/gdpr.py b/my/github/gdpr.py index fe8a64b..a676b1b 100644 --- a/my/github/gdpr.py +++ b/my/github/gdpr.py @@ -35,6 +35,7 @@ def events() -> Iterable[Res[Event]]: 'issue_events_': None, # eh, doesn't seem to have any useful bodies 'attachments_' : None, # not sure if useful 'users' : None, # just contains random users + 'bots' : None, # just contains random bots 'repositories_' : _parse_repository, 'issue_comments_': _parse_issue_comment, 'issues_' : _parse_issue,