aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/templates/sampleimpl.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/templates/sampleimpl.py')
-rw-r--r--mesonbuild/templates/sampleimpl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/templates/sampleimpl.py b/mesonbuild/templates/sampleimpl.py
index 20ed8ab..2d1498b 100644
--- a/mesonbuild/templates/sampleimpl.py
+++ b/mesonbuild/templates/sampleimpl.py
@@ -14,8 +14,8 @@
class SampleImpl:
- def create_executable(self):
+ def create_executable(self) -> None:
raise NotImplementedError('Sample implementation for "executable" not implemented!')
- def create_library(self):
+ def create_library(self) -> None:
raise NotImplementedError('Sample implementation for "library" not implemented!')