Source code for cli.ExitCommand from cli.Command import Command [docs] class ExitCommand(Command): def __init__(self): """ Command to exit the MemX program. Command usage: exit """ super().__init__() [docs] def execute(self) -> bool: return True