summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qutebrowser/misc/crashsignal.py2
-rw-r--r--qutebrowser/utils/usertypes.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/qutebrowser/misc/crashsignal.py b/qutebrowser/misc/crashsignal.py
index 4ba1aca44..f7578a07f 100644
--- a/qutebrowser/misc/crashsignal.py
+++ b/qutebrowser/misc/crashsignal.py
@@ -245,7 +245,7 @@ class CrashHandler(QObject):
if 'pdb-postmortem' in objects.debug_flags:
if tb is None:
- pdb.set_trace() # noqa: T100
+ pdb.set_trace() # noqa: T100 pylint: disable=forgotten-debug-statement
else:
pdb.post_mortem(tb)
diff --git a/qutebrowser/utils/usertypes.py b/qutebrowser/utils/usertypes.py
index ee0f899cc..56c29899d 100644
--- a/qutebrowser/utils/usertypes.py
+++ b/qutebrowser/utils/usertypes.py
@@ -301,6 +301,7 @@ class Backend(enum.Enum):
"""The backend being used (usertypes.backend)."""
+ # pylint: disable=invalid-name
QtWebKit = enum.auto()
QtWebEngine = enum.auto()