summaryrefslogtreecommitdiff
path: root/qutebrowser/commands/runners.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/commands/runners.py')
-rw-r--r--qutebrowser/commands/runners.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qutebrowser/commands/runners.py b/qutebrowser/commands/runners.py
index 1ad563c5d..0d63d0021 100644
--- a/qutebrowser/commands/runners.py
+++ b/qutebrowser/commands/runners.py
@@ -7,7 +7,7 @@
import traceback
import re
import contextlib
-from typing import TYPE_CHECKING, Callable, Dict, Iterator, Mapping, MutableMapping
+from typing import TYPE_CHECKING, Callable, Dict, Tuple, Iterator, Mapping, MutableMapping
from qutebrowser.qt.core import pyqtSlot, QUrl, QObject
@@ -21,7 +21,7 @@ if TYPE_CHECKING:
_ReplacementFunction = Callable[['tabbedbrowser.TabbedBrowser'], str]
-last_command = {}
+last_command: Dict[usertypes.KeyMode, Tuple[str, int]] = {}
def _url(tabbed_browser):