summaryrefslogtreecommitdiffstats
path: root/SCons/Defaults.py
diff options
context:
space:
mode:
Diffstat (limited to 'SCons/Defaults.py')
-rw-r--r--SCons/Defaults.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/SCons/Defaults.py b/SCons/Defaults.py
index 2bac41e..b3f6d1d 100644
--- a/SCons/Defaults.py
+++ b/SCons/Defaults.py
@@ -498,7 +498,7 @@ def _defines(prefix, defs, suffix, env, c=_concat_ixes):
return c(prefix, env.subst_path(processDefines(defs)), suffix, env)
-class NullCmdGenerator(object):
+class NullCmdGenerator:
"""This is a callable class that can be used in place of other
command generators if you don't want them to do anything.
@@ -517,7 +517,7 @@ class NullCmdGenerator(object):
return self.cmd
-class Variable_Method_Caller(object):
+class Variable_Method_Caller:
"""A class for finding a construction variable on the stack and
calling one of its methods.