mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-04-26 16:46:23 +00:00

Addresses repeated SyntaxWarnings when running linters: ``` kasa/tests/test_bulb.py:254: SyntaxWarning: invalid escape sequence '\d' ValueError, match="Temperature should be between \d+ and \d+, was 1000" kasa/tests/test_bulb.py:258: SyntaxWarning: invalid escape sequence '\d' ValueError, match="Temperature should be between \d+ and \d+, was 10000" kasa/tests/test_common_modules.py:216: SyntaxWarning: invalid escape sequence '\d' with pytest.raises(ValueError, match="Temperature should be between \d+ and \d+"): kasa/tests/test_common_modules.py:219: SyntaxWarning: invalid escape sequence '\d' with pytest.raises(ValueError, match="Temperature should be between \d+ and \d+"): ```