Skip to content
New issue

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

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

Already on GitHub? # to your account

fix bug: DeviceState.get_all_children doesn't return all the children #163

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

zr4in
Copy link

@zr4in zr4in commented Nov 12, 2024

>>> a = set([1, 2, 3])
>>> b = set([2, 3, 4])
>>> a.union(b)
{1, 2, 3, 4}
>>> a
{1, 2, 3}
>>> a = a.union(b)
>>> a
{1, 2, 3, 4}

A set won't be update after set.union(set) called.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant