summaryrefslogtreecommitdiff
path: root/qutebrowser/utils/objreg.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/utils/objreg.py')
-rw-r--r--qutebrowser/utils/objreg.py17
1 files changed, 12 insertions, 5 deletions
diff --git a/qutebrowser/utils/objreg.py b/qutebrowser/utils/objreg.py
index 9f794a5e8..c83feb532 100644
--- a/qutebrowser/utils/objreg.py
+++ b/qutebrowser/utils/objreg.py
@@ -22,12 +22,19 @@
import collections
import functools
-from typing import (TYPE_CHECKING, Any, Callable, MutableMapping, MutableSequence,
- Optional, Sequence, Union)
-from qutebrowser.qt import QtWidgets
-
+from typing import (
+ TYPE_CHECKING,
+ Any,
+ Callable,
+ MutableMapping,
+ MutableSequence,
+ Optional,
+ Sequence,
+ Union,
+)
+
+from qutebrowser.qt import QtCore, QtWidgets
from qutebrowser.utils import log, usertypes, utils
-from qutebrowser.qt import QtCore
if TYPE_CHECKING:
from qutebrowser.mainwindow import mainwindow