summaryrefslogtreecommitdiff
path: root/SCons/Warnings.py
diff options
context:
space:
mode:
Diffstat (limited to 'SCons/Warnings.py')
-rw-r--r--SCons/Warnings.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/SCons/Warnings.py b/SCons/Warnings.py
index f77a24a2d..5c2a0db62 100644
--- a/SCons/Warnings.py
+++ b/SCons/Warnings.py
@@ -144,15 +144,15 @@ _warningAsException = False
# If not None, a function to call with the warning
_warningOut = None
-def suppressWarningClass(clazz):
+def suppressWarningClass(clazz) -> None:
"""Suppresses all warnings of type clazz or derived from clazz."""
_enabled.insert(0, (clazz, False))
-def enableWarningClass(clazz):
+def enableWarningClass(clazz) -> None:
"""Enables all warnings of type clazz or derived from clazz."""
_enabled.insert(0, (clazz, True))
-def warningAsException(flag=True):
+def warningAsException(flag: bool=True):
"""Set global _warningAsExeption flag.
Args:
@@ -185,7 +185,7 @@ def warn(clazz, *args):
_warningOut(warning)
break
-def process_warn_strings(arguments):
+def process_warn_strings(arguments) -> None:
"""Process requests to enable/disable warnings.
The requests are strings passed to the --warn option or the