(self, visitor: ExpressionVisitor[T])
| 2281 | self.as_type = NotParsed.VALUE |
| 2282 | |
| 2283 | def accept(self, visitor: ExpressionVisitor[T]) -> T: |
| 2284 | return visitor.visit_str_expr(self) |
| 2285 | |
| 2286 | |
| 2287 | def is_StrExpr_list(seq: list[Expression]) -> TypeGuard[list[StrExpr]]: # noqa: N802 |
nothing calls this directly
no test coverage detected