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
The Search Construction component (and possibly others) allows for searching on multiple keywords. The descriptions suggest that constructions with any of the keywords will be returned, and the use of a function called any_keyword_in_string suggests that is the intent. However, that function actually uses the python all() function instead of any():
The Search Construction component (and possibly others) allows for searching on multiple keywords. The descriptions suggest that constructions with any of the keywords will be returned, and the use of a function called
any_keyword_in_string
suggests that is the intent. However, that function actually uses the pythonall()
function instead ofany()
:honeybee-core/honeybee/search.py
Line 49 in 29bf4d4
The result is that searching on multiple keywords tends to return no results instead of more results.
The text was updated successfully, but these errors were encountered: