(self, tv: ParamSpecType)
| 254 | self.fixup_type(tv.default) |
| 255 | |
| 256 | def process_param_spec_def(self, tv: ParamSpecType) -> None: |
| 257 | self.fixup_type(tv.upper_bound) |
| 258 | self.fixup_type(tv.default) |
| 259 | |
| 260 | def process_type_var_tuple_def(self, tv: TypeVarTupleType) -> None: |
| 261 | self.fixup_type(tv.upper_bound) |
nothing calls this directly
no test coverage detected