aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/modtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/modules/modtest.py')
-rw-r--r--mesonbuild/modules/modtest.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/modules/modtest.py b/mesonbuild/modules/modtest.py
index 533989f..7a4c19d 100644
--- a/mesonbuild/modules/modtest.py
+++ b/mesonbuild/modules/modtest.py
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from . import ModuleReturnValue
from . import ExtensionModule
from ..interpreterbase import noKwargs
@@ -21,8 +20,6 @@ class TestModule(ExtensionModule):
@noKwargs
def print_hello(self, state, args, kwargs):
print('Hello from a Meson module')
- rv = ModuleReturnValue(None, [])
- return rv
def initialize(*args, **kwargs):
return TestModule(*args, **kwargs)