(self, t: CallableType)
| 782 | return 0 |
| 783 | |
| 784 | def score_callable(self, t: CallableType) -> int: |
| 785 | return sum(self.score_type(x, arg_pos=True) for x in t.arg_types) + self.score_type( |
| 786 | t.ret_type, arg_pos=False |
| 787 | ) |
| 788 | |
| 789 | |
| 790 | def any_score_type(ut: Type, arg_pos: bool) -> float: |
no test coverage detected