(
self: BaseResultInternal[Row[_T, Unpack[TupleAny]]],
raise_for_second_row: bool,
raise_for_none: bool,
scalar: Literal[True],
)
| 502 | |
| 503 | @overload |
| 504 | def _only_one_row( |
| 505 | self: BaseResultInternal[Row[_T, Unpack[TupleAny]]], |
| 506 | raise_for_second_row: bool, |
| 507 | raise_for_none: bool, |
| 508 | scalar: Literal[True], |
| 509 | ) -> _T: ... |
| 510 | |
| 511 | @overload |
| 512 | def _only_one_row( |
no test coverage detected