From 4aa0e93922355c01c86ad41d985ec24e4ec8a1f6 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 28 Aug 2024 10:35:28 -0700 Subject: options: fix the annotations of _to_tuple --- mesonbuild/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/options.py b/mesonbuild/options.py index 1566f940c..aea38ec3e 100644 --- a/mesonbuild/options.py +++ b/mesonbuild/options.py @@ -142,7 +142,7 @@ class OptionKey: def __hash__(self) -> int: return self._hash - def _to_tuple(self) -> T.Tuple[str, str, str, MachineChoice, str]: + def _to_tuple(self) -> T.Tuple[str, MachineChoice, str]: return (self.subproject, self.machine, self.name) def __eq__(self, other: object) -> bool: -- cgit v1.2.3