(bind: BindParameter[Any])
| 614 | kwargs.update(optionaldict) |
| 615 | |
| 616 | def visit_bindparam(bind: BindParameter[Any]) -> None: |
| 617 | if bind.key in kwargs: |
| 618 | bind.value = kwargs[bind.key] |
| 619 | bind.required = False |
| 620 | if unique: |
| 621 | bind._convert_to_unique() |
| 622 | |
| 623 | return cloned_traverse( |
| 624 | self, |
nothing calls this directly
no test coverage detected