(self)
| 1016 | |
| 1017 | class PromptManager(object): |
| 1018 | def __init__(self): |
| 1019 | self._currentPrompt = None |
| 1020 | |
| 1021 | def begin_prompt(self, message): |
| 1022 | if self._currentPrompt is None: |
nothing calls this directly
no outgoing calls
no test coverage detected