Loading muffin/__main__.py +7 −2 Original line number Diff line number Diff line from .ui.InteractiveUserInterface import start import sys from .ui import InteractiveUserInterface, CommandLineUserInterface if __name__ == "__main__": start() if len(sys.argv) > 1: CommandLineUserInterface.start() else: InteractiveUserInterface.start() Loading
muffin/__main__.py +7 −2 Original line number Diff line number Diff line from .ui.InteractiveUserInterface import start import sys from .ui import InteractiveUserInterface, CommandLineUserInterface if __name__ == "__main__": start() if len(sys.argv) > 1: CommandLineUserInterface.start() else: InteractiveUserInterface.start()