(self, cur_module: str | None, typ: Type)
| 756 | return f"({', '.join(sig['arg_types'])}) -> {sig['return_type']}" |
| 757 | |
| 758 | def format_type(self, cur_module: str | None, typ: Type) -> str: |
| 759 | if self.use_fixme and isinstance(get_proper_type(typ), AnyType): |
| 760 | return self.use_fixme |
| 761 | return typ.accept(TypeFormatter(cur_module, self.graph, self.manager.options)) |
| 762 | |
| 763 | def score_type(self, t: Type, arg_pos: bool) -> int: |
| 764 | """Generate a score for a type that we use to pick which type to use. |
no test coverage detected