aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/mparser.py')
-rw-r--r--mesonbuild/mparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mparser.py b/mesonbuild/mparser.py
index 36590ce..53a4a89 100644
--- a/mesonbuild/mparser.py
+++ b/mesonbuild/mparser.py
@@ -525,7 +525,7 @@ class Parser:
return True
return False
- def accept_any(self, tids: T.Sequence[str]) -> str:
+ def accept_any(self, tids: T.Tuple[str, ...]) -> str:
tid = self.current.tid
if tid in tids:
self.getsym()