aboutsummaryrefslogtreecommitdiff
path: root/tools/boost_names.py
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-11-06 17:21:25 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2019-11-07 22:18:21 +0200
commit6e708208ddc870fefde92b22c031575c33bb243b (patch)
tree0eeac1c226d66cb8ce0315362cdcb5ae682d03f8 /tools/boost_names.py
parentd08091756191981f1bd3c7741b412b95f965fe0a (diff)
downloadmeson-6e708208ddc870fefde92b22c031575c33bb243b.zip
meson-6e708208ddc870fefde92b22c031575c33bb243b.tar.gz
meson-6e708208ddc870fefde92b22c031575c33bb243b.tar.bz2
CI: add initial type annotation checking
Diffstat (limited to 'tools/boost_names.py')
-rwxr-xr-xtools/boost_names.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/boost_names.py b/tools/boost_names.py
index d0e5444..af461d8 100755
--- a/tools/boost_names.py
+++ b/tools/boost_names.py
@@ -31,7 +31,7 @@ import json
import re
Module = collections.namedtuple('Module', ['dirname', 'name', 'libnames'])
-Module.__repr__ = lambda self: str((self.dirname, self.name, self.libnames))
+Module.__repr__ = lambda self: str((self.dirname, self.name, self.libnames)) # type: ignore
LIBS = 'libs'