(seq: list[Expression])
| 2285 | |
| 2286 | |
| 2287 | def is_StrExpr_list(seq: list[Expression]) -> TypeGuard[list[StrExpr]]: # noqa: N802 |
| 2288 | return all(isinstance(item, StrExpr) for item in seq) |
| 2289 | |
| 2290 | |
| 2291 | class BytesExpr(Expression): |
no test coverage detected
searching dependent graphs…