Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[python] Fix Cluster objects datatypes on Python 3.11 #26729

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/controller/python/chip/clusters/Types.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# limitations under the License.
#


class Nullable():
def __repr__(self):
return 'Null'
Expand All @@ -32,5 +31,13 @@ def __ne__(self, other):
def __lt__(self, other):
return True

def __hash__(self):
bzbarsky-apple marked this conversation as resolved.
Show resolved Hide resolved
''' Explicitly implement __hash__() to imply immutability when used in
dataclasses.

See also: https://docs.python.org/3/library/dataclasses.html#dataclasses.dataclass
'''
return 0
agners marked this conversation as resolved.
Show resolved Hide resolved


NullValue = Nullable()
Loading