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
Hey there @frenck, @bdraco, mind taking a look at this issue as it has been labeled with an integration (solaredge) you are listed as a code owner for? Thanks!
Code owner commands
Code owners of solaredge can trigger bot actions by commenting:
@home-assistant close Closes the issue.
@home-assistant rename Awesome new title Renames the issue.
@home-assistant reopen Reopen the issue.
@home-assistant unassign solaredge Removes the current integration label and assignees on the issue, add the integration domain after the command.
@home-assistant add-label needs-more-information Add a label (needs-more-information, problem in dependency, problem in custom component) to the issue.
@home-assistant remove-label needs-more-information Remove a label (needs-more-information, problem in dependency, problem in custom component) on the issue.
The problem
After every HA reboot I get this warning:
Logger: py.warnings Source: components/solaredge/coordinator.py:10 First occurred: 08:08:15 (1 occurrences) Last logged: 08:08:15 /usr/local/lib/python3.13/site-packages/stringcase.py:247: SyntaxWarning: invalid escape sequence '\W' return re.sub("\W+", "", string)
This warning was introduced in Python 3.6 as a DeprecationWarning and changed to a SyntaxWarning in Python 3.12, from what I can find.
The warning doesn't affect functionality currently, but I think it indicates that this code may break in future Python versions.
What version of Home Assistant Core has the issue?
core-2025.2.5
What was the last working version of Home Assistant Core?
No response
What type of installation are you running?
Home Assistant OS
Integration causing the issue
Solaredge
Link to integration documentation on our website
https://www.home-assistant.io/integrations/solaredge
Diagnostics information
Example YAML snippet
Anything in the logs that might be useful for us?
Additional information
To me this could be a solution, but I am not completely sure:
replace 'return re.sub("\W+", "", string)' by 'return re.sub(r"\W+", "", string)'?
The text was updated successfully, but these errors were encountered: