(
stub: Missing, runtime: MaybeMissing[Any], object_path: list[str]
)
| 1301 | |
| 1302 | @verify.register(Missing) |
| 1303 | def verify_missing( |
| 1304 | stub: Missing, runtime: MaybeMissing[Any], object_path: list[str] |
| 1305 | ) -> Iterator[Error]: |
| 1306 | if runtime is MISSING: |
| 1307 | return |
| 1308 | yield Error(object_path, "is not present in stub", stub, runtime) |
| 1309 | |
| 1310 | |
| 1311 | @verify.register(nodes.Var) |
nothing calls this directly
no test coverage detected
searching dependent graphs…