(value: str)
| 466 | pattern = re.compile(r"^{(.*)}$") |
| 467 | |
| 468 | def handle_raw_string(value: str) -> Sequence[Optional[str]]: |
| 469 | inner = pattern.match(value).group(1) # type: ignore[union-attr] # noqa: E501 |
| 470 | return _split_enum_values(inner) |
| 471 | |
| 472 | def process( |
| 473 | value: Sequence[typing_Any], |
nothing calls this directly
no test coverage detected