From edf8bec73e74e6e6059d6b749c51fa39960bd582 Mon Sep 17 00:00:00 2001 From: Thomas Preston Date: Mon, 5 Aug 2013 14:38:34 +0100 Subject: [PATCH] removed commented out lines --- pifacecommon/interrupts.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pifacecommon/interrupts.py b/pifacecommon/interrupts.py index fc04f8e..ccbc70f 100644 --- a/pifacecommon/interrupts.py +++ b/pifacecommon/interrupts.py @@ -121,7 +121,6 @@ def activate(self): """When activated the :class:`PortEventListener` will run callbacks associated with pins/directions. """ - # enable_interrupts(self.port) self.detector.start() self.dispatcher.start() @@ -132,7 +131,6 @@ def deactivate(self): self.event_queue.put(self.TERMINATE_SIGNAL) self.dispatcher.join() self.detector.terminate() - # disable_interrupts(self.port) def _event_matches_pin_function_map(event, pin_function_map):