chz/tiepin.py [607:612]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if right_param.default is not empty and left_param.default is empty:
                return False
            left_param_annot = maybe_eval_in_context(left_param.annotation, left.fn)
            right_param_annot = maybe_eval_in_context(right_param.annotation, right.fn)
            if not is_subtype(right_param_annot, left_param_annot):
                return False
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



chz/tiepin.py [641:646]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if right_param.default is not empty and left_param.default is empty:
                return False
            left_param_annot = maybe_eval_in_context(left_param.annotation, left.fn)
            right_param_annot = maybe_eval_in_context(right_param.annotation, right.fn)
            if not is_subtype(right_param_annot, left_param_annot):
                return False
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



