MCPcopy Index your code
hub / github.com/python-cmd2/cmd2 / completedefault

Method completedefault

tests/test_completion.py:199–204  ·  view source on GitHub ↗

Method called to complete an input line when no command-specific complete_*() method is available.

(self, *ignored)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

from_valuesMethod · 0.80

Tested by

no test coverage detected