Remove old _stop_timers

This commit is contained in:
Florian Bruhin 2018-10-26 09:33:00 +02:00
parent 20c9397b86
commit cbc36666d0

View File

@ -129,18 +129,6 @@ class NormalKeyParser(CommandKeyParser):
self._debug_log("Releasing inhibition state of normal mode.")
self._inhibited = False
@pyqtSlot()
def _stop_timers(self):
super()._stop_timers()
self._partial_timer.stop()
self._partial_timer.timeout.disconnect(self._clear_partial_match)
self._inhibited_timer.stop()
try:
self._inhibited_timer.timeout.disconnect(self._clear_inhibited)
except TypeError:
# no connections
pass
class PassthroughKeyParser(CommandKeyParser):