(other_type: str, type_ignore: str = "")
| 199 | |
| 200 | |
| 201 | def inplace(other_type: str, type_ignore: str = "") -> list[OpsType]: |
| 202 | extras = {"other_type": other_type} |
| 203 | return [ |
| 204 | ([(None, None)], required_method_inplace, extras), |
| 205 | ( |
| 206 | BINOPS_INPLACE, |
| 207 | template_inplace, |
| 208 | extras | {"type_ignore": _type_ignore(type_ignore)}, |
| 209 | ), |
| 210 | ] |
| 211 | |
| 212 | |
| 213 | def unops() -> list[OpsType]: |
no test coverage detected
searching dependent graphs…