summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/container/keymap.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/ranger/container/keymap.py b/ranger/container/keymap.py
index 50568638..ab87ae36 100644
--- a/ranger/container/keymap.py
+++ b/ranger/container/keymap.py
@@ -151,13 +151,6 @@ class Binding(object):
 			self.function = self.actions[FUNC]
 		except KeyError:
 			self.function = None
-			self.has_direction = False
-		else:
-			argnames = getargspec(self.function)[0]
-			try:
-				self.has_direction = actions['with_direction']
-			except KeyError:
-				self.has_direction = DIRECTION in argnames
 		try:
 			self.direction = self.actions[DIRARG]
 		except KeyError: