Use raw string for regex to avoid SyntaxWarning
in python 3 strings are considered unicode. the \% escape used in the regex is therefore treated as an unicode escape instead of a regex character escape. as this is not a valid unicode escape, python 3.12+ throws an SyntaxWarning.
treating the regex string as a raw string fixes the issue.
fixes https://github.com/sockless-coding/panasonic_cc/issues/206
Added to my PR #94 Thanks
Hi, I'll be happy to merge this, but can you rebase your PR to match the newest changes. These regex'es is moved around after the auth refactor
https://github.com/lostfields/python-panasonic-comfort-cloud/blob/8ca861f92a968a71453d02039ba585580612a83f/pcomfortcloud/apiclient.py#L255-L265