(value: str)
| 481 | pattern = re.compile(r"^{(.*)}$") |
| 482 | |
| 483 | def handle_raw_string(value: str) -> Sequence[Optional[str]]: |
| 484 | inner = pattern.match(value).group(1) # type: ignore[union-attr] # noqa: E501 |
| 485 | return _split_enum_values(inner) |
| 486 | |
| 487 | def process( |
| 488 | value: Sequence[typing_Any], |
nothing calls this directly
no test coverage detected