Method called to complete an input line when no command-specific complete_*() method is available.
(self, *ignored)
| 197 | return Completions.from_values([value]) |
| 198 | |
| 199 | def completedefault(self, *ignored) -> Completions: |
| 200 | """Method called to complete an input line when no command-specific |
| 201 | complete_*() method is available. |
| 202 | |
| 203 | """ |
| 204 | return Completions.from_values(["default"]) |
| 205 | |
| 206 | |
| 207 | @pytest.fixture |
nothing calls this directly
no test coverage detected