Whether or not the error is for something missing from the stub.
(self)
| 133 | self.runtime_desc = runtime_desc |
| 134 | |
| 135 | def is_missing_stub(self) -> bool: |
| 136 | """Whether or not the error is for something missing from the stub.""" |
| 137 | return isinstance(self.stub_object, Missing) |
| 138 | |
| 139 | def is_positional_only_related(self) -> bool: |
| 140 | """Whether or not the error is for something being (or not being) positional-only.""" |
no test coverage detected