(
self,
element: Any,
resolved: Any,
argname: Optional[str] = None,
**kw: Any,
)
| 1192 | return resolved |
| 1193 | |
| 1194 | def _implicit_coercions( |
| 1195 | self, |
| 1196 | element: Any, |
| 1197 | resolved: Any, |
| 1198 | argname: Optional[str] = None, |
| 1199 | **kw: Any, |
| 1200 | ) -> Any: |
| 1201 | if resolved._is_lambda_element: |
| 1202 | return resolved |
| 1203 | else: |
| 1204 | return super()._implicit_coercions( |
| 1205 | element, resolved, argname=argname, **kw |
| 1206 | ) |
| 1207 | |
| 1208 | |
| 1209 | class SelectStatementImpl(_NoTextCoercion, RoleImpl): |
nothing calls this directly
no test coverage detected