From 524c99afef75fd0fdb6b6450d9970398f1f0585c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 31 Oct 2021 16:07:46 +0900 Subject: [PATCH] Fix a flake8 warning --- sphinx/util/logging.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index 337c87b92..bdf77dc07 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -369,9 +369,10 @@ def is_suppressed_warning(type: str, subtype: str, suppress_warnings: List[str]) target, subtarget = warning_type, None if target == type: - if (subtype is None and subtarget is None - or subtarget is None or - subtarget == subtype or subtarget == '*'): + if ((subtype is None and subtarget is None) or + subtarget is None or + subtarget == subtype or + subtarget == '*'): return True return False