From: Edward Betts <edward@4angle.com>
Date: Thu, 7 Nov 2024 10:05:08 +0000
Subject: fix SyntaxWarning

---
 pyws66i/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyws66i/__init__.py b/pyws66i/__init__.py
index 4cfacb0..7bc97f4 100644
--- a/pyws66i/__init__.py
+++ b/pyws66i/__init__.py
@@ -246,7 +246,7 @@ def get_ws66i(host_name: str, host_port=8080):
                 if expect_zone is not None:
                     # Exepct a regex string to prevent unsynchronized behavior when
                     # multiple clients communicate simultaneously with the WS66i
-                    expect_str = f"({expect_zone})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)"
+                    expect_str = fr"({expect_zone})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)"
                     resp = self._telnet.expect([expect_str.encode()], timeout=TIMEOUT)
                     _LOGGER.debug('Received "%s"', str(resp[1]))
                     return resp[1]
