(incomplete: str)
| 117 | |
| 118 | |
| 119 | def complete_existing_lang(incomplete: str): |
| 120 | lang_path: Path |
| 121 | for lang_path in get_lang_paths(): |
| 122 | if lang_path.is_dir() and lang_path.name.startswith(incomplete): |
| 123 | yield lang_path.name |
| 124 | |
| 125 | |
| 126 | @app.callback() |
nothing calls this directly
no test coverage detected
searching dependent graphs…