diff options
| -rw-r--r-- | mesonbuild/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
