summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/gui/ui.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py
index 9900ce52..03a43c57 100644
--- a/ranger/gui/ui.py
+++ b/ranger/gui/ui.py
@@ -238,7 +238,7 @@ class UI(  # pylint: disable=too-many-instance-attributes,too-many-public-method
         for key in keys:
             self.handle_key(key)
 
-    def handle_input(self):
+    def handle_input(self):  # pylint: disable=too-many-branches
         key = self.win.getch()
         if key == curses.KEY_ENTER:
             key = ord('\n')
@@ -281,7 +281,6 @@ class UI(  # pylint: disable=too-many-instance-attributes,too-many-public-method
                 # STDIN has been closed
                 self.fm.exit()
 
-
     def setup(self):
         """Build up the UI by initializing widgets."""
         from ranger.gui.widgets.titlebar import TitleBar