diff options
-rw-r--r-- | ranger/api/commands.py | 2 | ||||
-rw-r--r-- | ranger/gui/ui.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ranger/api/commands.py b/ranger/api/commands.py index 56fc94a3..f5011232 100644 --- a/ranger/api/commands.py +++ b/ranger/api/commands.py @@ -389,7 +389,7 @@ class FunctionCommand(Command): args, keywords = list(), dict() for arg in self.args[1:]: equal_sign = arg.find("=") - value = arg if (equal_sign is -1) else arg[equal_sign + 1:] + value = arg if equal_sign == -1 else arg[equal_sign + 1:] try: value = int(value) except ValueError: diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py index 0227bad4..5d53603f 100644 --- a/ranger/gui/ui.py +++ b/ranger/gui/ui.py @@ -243,7 +243,7 @@ class UI( # pylint: disable=too-many-instance-attributes,too-many-public-method self.set_load_mode(True) for _ in range(4): getkey = self.win.getch() - if getkey is not -1: + if getkey != -1: keys.append(getkey) if len(keys) == 1: keys.append(-1) |