You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When "__hasattribute__" executes the line "return any(self.children, lambda x: x._name == name)" it fails with the error message: TypeError: any() takes exactly one argument (2 given)
When "__hasattribute__" executes the line "return any(self.children, lambda x: x._name == name)" it fails with the error message: TypeError: any() takes exactly one argument (2 given)
My suggested fix is in pull request #57.
https://github.com/stchris/untangle/pull/57
Thank you in advance.
The issue can be reproduced with the following code snippet when running Python 3.6:
Error message
TypeError: any() takes exactly one argument (2 given)
The text was updated successfully, but these errors were encountered: