(info: GraphQLResolveInfo)
| 189 | |
| 190 | |
| 191 | def github_state(info: GraphQLResolveInfo) -> GitHubState: |
| 192 | context = info.context |
| 193 | assert isinstance(context, GitHubState) |
| 194 | return context |
| 195 | |
| 196 | |
| 197 | @dataclass |
no outgoing calls
no test coverage detected