Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Eades <danieleades@hotmail.com>2022-01-10 16:38:34 +0300
committerDaniel Eades <danieleades@hotmail.com>2022-01-10 22:56:30 +0300
commite51591d061a9795663f1c382799dfe9e40cadefe (patch)
tree5a08024ff91cfcf312f30b9ee8613aa0f55112a3 /sphinx/util/logging.py
parente79681c76843c1339863b365747079b2d662d0c1 (diff)
simplify some set comparisons (SIM109)
Diffstat (limited to 'sphinx/util/logging.py')
-rw-r--r--sphinx/util/logging.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py
index bcf8bf63d..7294885b5 100644
--- a/sphinx/util/logging.py
+++ b/sphinx/util/logging.py
@@ -375,12 +375,8 @@ def is_suppressed_warning(type: str, subtype: str, suppress_warnings: List[str])
else:
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 == '*'):
- return True
+ if target == type and subtarget in (None, subtype, "*"):
+ return True
return False