| 425 | # A context for querying for configuration data about a module for |
| 426 | # cache invalidation purposes. |
| 427 | class ReportConfigContext(NamedTuple): |
| 428 | id: str # Module name |
| 429 | path: str # Module file path |
| 430 | is_check: bool # Is this invocation for checking whether the config matches |
| 431 | |
| 432 | |
| 433 | # A context for a function signature hook that infers a better signature for a |
no outgoing calls
no test coverage detected
searching dependent graphs…