Loading player_functions.py +4 −2 Original line number Diff line number Diff line Loading @@ -20,8 +20,10 @@ def stoplisten(): data = display.read() # Decode the byte to a string try: received_char = data.decode('utf-8') except: print("failing decode quietly") # Check if the received character is 'E' if received_char == 'E': if (proc.poll() is not None): Loading Loading
player_functions.py +4 −2 Original line number Diff line number Diff line Loading @@ -20,8 +20,10 @@ def stoplisten(): data = display.read() # Decode the byte to a string try: received_char = data.decode('utf-8') except: print("failing decode quietly") # Check if the received character is 'E' if received_char == 'E': if (proc.poll() is not None): Loading