summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-11-20 12:56:31 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-11-20 12:56:31 +0100
commit93091c1f988024bcb24fb6a8f347de484c275670 (patch)
treed875713123110d940df0b602317b29881040f5e8
parent0c29484bcb322e9d47e1cbab0be2f647aa274d96 (diff)
downloadqutebrowser-93091c1f988024bcb24fb6a8f347de484c275670.tar.gz
qutebrowser-93091c1f988024bcb24fb6a8f347de484c275670.zip
Fix coverage check
-rw-r--r--qutebrowser/utils/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/utils/utils.py b/qutebrowser/utils/utils.py
index 7684d9eca..db6671fd3 100644
--- a/qutebrowser/utils/utils.py
+++ b/qutebrowser/utils/utils.py
@@ -70,7 +70,7 @@ is_posix = os.name == 'posix'
try:
# Protocol was added in Python 3.8
from typing import Protocol
-except ImportError:
+except ImportError: # pragma: no cover
if not TYPE_CHECKING:
class Protocol: