(
self,
element: Any,
resolved: Any,
argname: Optional[str] = None,
**kw: Any,
)
| 1185 | return resolved |
| 1186 | |
| 1187 | def _implicit_coercions( |
| 1188 | self, |
| 1189 | element: Any, |
| 1190 | resolved: Any, |
| 1191 | argname: Optional[str] = None, |
| 1192 | **kw: Any, |
| 1193 | ) -> Any: |
| 1194 | if resolved._is_lambda_element: |
| 1195 | return resolved |
| 1196 | else: |
| 1197 | return super()._implicit_coercions( |
| 1198 | element, resolved, argname=argname, **kw |
| 1199 | ) |
| 1200 | |
| 1201 | |
| 1202 | class SelectStatementImpl(_NoTextCoercion, RoleImpl): |
nothing calls this directly
no test coverage detected