(self, repo_id: GraphQLId)
| 120 | return r |
| 121 | |
| 122 | def next_issue_comment_full_database_id(self, repo_id: GraphQLId) -> int: |
| 123 | r = self._next_issue_comment_full_database_id[repo_id] |
| 124 | self._next_issue_comment_full_database_id[repo_id] += 1 |
| 125 | return r |
| 126 | |
| 127 | def push_hook(self, refs: Sequence[str]) -> None: |
| 128 | # updated_refs = set(refs) |
no outgoing calls
no test coverage detected