aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/templates/sampleimpl.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2020-09-01 14:27:10 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2020-09-08 20:15:58 +0200
commit1b19822a2df7ff969e3734973f131df9ed9d2ee3 (patch)
treecf0594943c705e59dfba531971b12070d8aa5bb2 /mesonbuild/templates/sampleimpl.py
parent62f7642a6152ddaafbe8b5fd9eb7b19e8d87c079 (diff)
downloadmeson-1b19822a2df7ff969e3734973f131df9ed9d2ee3.zip
meson-1b19822a2df7ff969e3734973f131df9ed9d2ee3.tar.gz
meson-1b19822a2df7ff969e3734973f131df9ed9d2ee3.tar.bz2
typing: Fix templates
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!')