diff options
| author | Ryan Snyder <ryan@vector35.com> | 2025-01-24 17:57:26 -0500 |
|---|---|---|
| committer | Ryan Snyder <ryan@vector35.com> | 2025-02-14 15:58:56 -0500 |
| commit | bcdc0d9b89605936a1cb6cf3ffaaece60d3c5777 (patch) | |
| tree | 7286bd0963a49d9b90ddccf3a4b70b71c08e6ce5 /python/variable.py | |
| parent | 071811547bded7cf570125a03bb12d0b7c56a5ac (diff) | |
uidf refactor
Diffstat (limited to 'python/variable.py')
| -rw-r--r-- | python/variable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/variable.py b/python/variable.py index 2a8ee026..e33f9af6 100644 --- a/python/variable.py +++ b/python/variable.py @@ -380,7 +380,7 @@ class PossibleValueSet: return self.ranges == other.ranges elif self.type in [RegisterValueType.InSetOfValues, RegisterValueType.NotInSetOfValues]: return self.values == other.values - elif self.type == RegisterValueType.UndeterminedValue and hasattr(other, 'type'): + elif self.type == RegisterValueType.UndeterminedValue and hasattr(other, '_type'): return self.type == other.type else: return self == other |
