Marker object for things that are missing (from a stub or the runtime).
| 51 | |
| 52 | |
| 53 | class Missing: |
| 54 | """Marker object for things that are missing (from a stub or the runtime).""" |
| 55 | |
| 56 | def __repr__(self) -> str: |
| 57 | return "MISSING" |
| 58 | |
| 59 | |
| 60 | MISSING: Final = Missing() |
no outgoing calls
no test coverage detected
searching dependent graphs…