grooveondemand/groove/shell/quit.py

9 lines
157 B
Python
Raw Normal View History

2022-11-30 00:09:23 -08:00
from .base import BasePrompt
class quit(BasePrompt):
"""Exit the interactive shell."""
def process(self, cmd, *parts):
raise SystemExit()