aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreterbase/disabler.py
diff options
context:
space:
mode:
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})