(v: Value)
| 421 | |
| 422 | |
| 423 | def get_str_literal(v: Value) -> str | None: |
| 424 | if isinstance(v, LoadLiteral) and isinstance(v.value, str): |
| 425 | return v.value |
| 426 | return None |
| 427 | |
| 428 | |
| 429 | def get_max_prio(anns: list[Annotation]) -> list[Annotation]: |
no test coverage detected
searching dependent graphs…