(self, repo_id: GraphQLId)
| 115 | return r |
| 116 | |
| 117 | def next_pull_request_number(self, repo_id: GraphQLId) -> GitHubNumber: |
| 118 | r = GitHubNumber(self._next_pull_request_number[repo_id]) |
| 119 | self._next_pull_request_number[repo_id] += 1 |
| 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] |