# Lewis Crawler # 2021 - 2022 # Kitsune Scientific import time class Houston: def __init__(self, logger): # Setup logger self.log = logger # We're ready to go! self.log.success('Ready to robot!') def run(self): # Junk~ while True: try: self.log.debug('Nothing to do.') time.sleep(1) except KeyboardInterrupt: break