summaryrefslogtreecommitdiff
path: root/qutebrowser/config/configutils.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-12-06 08:15:32 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-12-06 08:15:32 +0100
commit72eec211cc96a68a45de15779ecf9aefd88e28e0 (patch)
tree4470054a2826f559aa3ec3e275f649259700821d /qutebrowser/config/configutils.py
parentc792913c68bc9eece696efa724af395c7289d867 (diff)
downloadqutebrowser-72eec211cc96a68a45de15779ecf9aefd88e28e0.tar.gz
qutebrowser-72eec211cc96a68a45de15779ecf9aefd88e28e0.zip
Revert "pylint: Work around used-before-assignment regression"
This reverts commit 49eddbe34c60599efbbd68d6704a6525628ff619.
Diffstat (limited to 'qutebrowser/config/configutils.py')
-rw-r--r--qutebrowser/config/configutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/config/configutils.py b/qutebrowser/config/configutils.py
index 15f10b1ef..480bbd85f 100644
--- a/qutebrowser/config/configutils.py
+++ b/qutebrowser/config/configutils.py
@@ -92,7 +92,7 @@ class Values:
values: Sequence[ScopedValue] = ()) -> None:
self.opt = opt
self._vmap: MutableMapping[
- "Values._VmapKeyType", ScopedValue] = collections.OrderedDict()
+ Values._VmapKeyType, ScopedValue] = collections.OrderedDict()
# A map from domain parts to rules that fall under them.
self._domain_map: Dict[
Optional[str], Set[ScopedValue]] = collections.defaultdict(set)