(self, manager: "CommandManager", t: type, s: str)
| 382 | display = "flow[]" |
| 383 | |
| 384 | def parse(self, manager: "CommandManager", t: type, s: str) -> Sequence[flow.Flow]: |
| 385 | try: |
| 386 | return manager.call_strings("view.flows.resolve", [s]) |
| 387 | except exceptions.CommandError as e: |
| 388 | raise ValueError(str(e)) from e |
| 389 | |
| 390 | def is_valid(self, manager: "CommandManager", typ: Any, val: Any) -> bool: |
| 391 | try: |
nothing calls this directly
no test coverage detected