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
in honeybee.typing clean_string
the hyphen is not being removed when running clean_string
changing re.sub(r'[^.A-Za-z0-9_-]', '', value) to re.sub(r'[^.A-Za-z0-9_(-)]', '', value) removes the hyphen from the string.
The text was updated successfully, but these errors were encountered:
in honeybee.typing clean_string
the hyphen is not being removed when running clean_string
changing
re.sub(r'[^.A-Za-z0-9_-]', '', value)
tore.sub(r'[^.A-Za-z0-9_(-)]', '', value)
removes the hyphen from the string.The text was updated successfully, but these errors were encountered: