Method
scalar
(
self,
statement: TypedReturnsRows[Never],
params: Optional[_CoreSingleExecuteParams] = None,
*,
execution_options: OrmExecuteOptionsParameter = util.EMPTY_DICT,
bind_arguments: Optional[_BindArguments] = None,
**kw: Any,
)
Source from the content-addressed store, hash-verified
| 2464 | # https://github.com/python/mypy/issues/20651 |
| 2465 | @overload |
| 2466 | def scalar( |
| 2467 | self, |
| 2468 | statement: TypedReturnsRows[Never], |
| 2469 | params: Optional[_CoreSingleExecuteParams] = None, |
| 2470 | *, |
| 2471 | execution_options: OrmExecuteOptionsParameter = util.EMPTY_DICT, |
| 2472 | bind_arguments: Optional[_BindArguments] = None, |
| 2473 | **kw: Any, |
| 2474 | ) -> Optional[Any]: ... |
| 2475 | |
| 2476 | @overload |
| 2477 | def scalar( |