Fri, 02 Aug 2019 19:21:03 +0200
EspDevices, MicrobitDevices: removed the obsolete 'handleDataFlood()' override.
eric6/MicroPython/EspDevices.py | file | annotate | diff | comparison | revisions | |
eric6/MicroPython/MicrobitDevices.py | file | annotate | diff | comparison | revisions |
--- a/eric6/MicroPython/EspDevices.py Fri Aug 02 19:20:07 2019 +0200 +++ b/eric6/MicroPython/EspDevices.py Fri Aug 02 19:21:03 2019 +0200 @@ -106,13 +106,6 @@ """ return True, "" - @pyqtSlot() - def handleDataFlood(self): - """ - Public slot handling a data flood from the device. - """ - self.microPython.setActionButtons(files=True) - def addDeviceMenuEntries(self, menu): """ Public method to add device specific entries to the given menu.
--- a/eric6/MicroPython/MicrobitDevices.py Fri Aug 02 19:20:07 2019 +0200 +++ b/eric6/MicroPython/MicrobitDevices.py Fri Aug 02 19:21:03 2019 +0200 @@ -9,8 +9,6 @@ from __future__ import unicode_literals -from PyQt5.QtCore import pyqtSlot - from .MicroPythonDevices import MicroPythonDevice from .MicroPythonReplWidget import HAS_QTCHART @@ -77,10 +75,3 @@ @rtype tuple of (bool, str) """ return True, "" - - @pyqtSlot() - def handleDataFlood(self): - """ - Public slot handling a data floof from the device. - """ - self.microPython.setActionButtons(files=True)