aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreterbase/disabler.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-06-11 16:58:13 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-06-18 23:48:33 +0200
commit63ade7d9378cae8ec2a811581684bf459407a7f0 (patch)
tree8cbc21520642db608b529f04d01fe25f89149ad3 /mesonbuild/interpreterbase/disabler.py
parent202e345dfba7ff3a39e4fb560b98889182dcc506 (diff)
downloadmeson-63ade7d9378cae8ec2a811581684bf459407a7f0.zip
meson-63ade7d9378cae8ec2a811581684bf459407a7f0.tar.gz
meson-63ade7d9378cae8ec2a811581684bf459407a7f0.tar.bz2
interpreter: Add a new MesonInterpreterObject for non-elementary objects
Diffstat (limited to 'mesonbuild/interpreterbase/disabler.py')
-rw-r--r--mesonbuild/interpreterbase/disabler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/interpreterbase/disabler.py b/mesonbuild/interpreterbase/disabler.py
index 50bc5bb..81f5264 100644
--- a/mesonbuild/interpreterbase/disabler.py
+++ b/mesonbuild/interpreterbase/disabler.py
@@ -12,10 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from .baseobjects import InterpreterObject
+from .baseobjects import MesonInterpreterObject
import typing as T
-class Disabler(InterpreterObject):
+class Disabler(MesonInterpreterObject):
def __init__(self) -> None:
super().__init__()
self.methods.update({'found': self.found_method})