aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/compilers.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r--mesonbuild/compilers/compilers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 3400c48..14e6f2d 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -646,13 +646,13 @@ class CompilerArgs(list):
return new
def __mul__(self, args):
- raise TypeError("can't multiply compiler arguments")
+ raise TypeError("can't multiply compiler arguments") # lgtm[py/unexpected-raise-in-special-method]
def __imul__(self, args):
- raise TypeError("can't multiply compiler arguments")
+ raise TypeError("can't multiply compiler arguments") # lgtm[py/unexpected-raise-in-special-method]
def __rmul__(self, args):
- raise TypeError("can't multiply compiler arguments")
+ raise TypeError("can't multiply compiler arguments") # lgtm[py/unexpected-raise-in-special-method]
def append(self, arg):
self.__iadd__([arg])