grooveondemand/groove/shell/quit.py
2022-11-30 00:09:23 -08:00

9 lines
157 B
Python

from .base import BasePrompt
class quit(BasePrompt):
"""Exit the interactive shell."""
def process(self, cmd, *parts):
raise SystemExit()