EspDevices, MicrobitDevices: removed the obsolete 'handleDataFlood()' override. micropython

Fri, 02 Aug 2019 19:21:03 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 02 Aug 2019 19:21:03 +0200
branch
micropython
changeset 7114
f416440c8be1
parent 7113
04ac3f9a87e6
child 7115
fe89c98430b6

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)

eric ide

mercurial