--- a/eric6/MicroPython/EspDevices.py Sat Feb 20 14:22:30 2021 +0100 +++ b/eric6/MicroPython/EspDevices.py Sat Feb 20 14:23:22 2021 +0100 @@ -4,8 +4,8 @@ # """ -Module implementing some utility functions and the MicroPythonDevice base -class. +Module implementing the device interface class for ESP32 and ESP8266 based +boards. """ import sys @@ -95,7 +95,7 @@ Plotter and a reason why it cannot. @rtype tuple of (bool, str) """ - return self.canStartRepl() + return True, "" def runScript(self, script): """