(self)
| 110 | ) |
| 111 | |
| 112 | def next_id(self) -> GraphQLId: |
| 113 | r = GraphQLId(str(self._next_id)) |
| 114 | self._next_id += 1 |
| 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]) |
no outgoing calls
no test coverage detected