mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 11:22:24 +01:00
Fix invalid escape sequences in regex (#1814)
This commit is contained in:
@@ -205,8 +205,7 @@ def maybe_simple_message(schema):
|
|||||||
|
|
||||||
def validate_printf(value):
|
def validate_printf(value):
|
||||||
# https://stackoverflow.com/questions/30011379/how-can-i-parse-a-c-format-string-in-python
|
# https://stackoverflow.com/questions/30011379/how-can-i-parse-a-c-format-string-in-python
|
||||||
# pylint: disable=anomalous-backslash-in-string
|
cfmt = r"""
|
||||||
cfmt = """\
|
|
||||||
( # start of capture group 1
|
( # start of capture group 1
|
||||||
% # literal "%"
|
% # literal "%"
|
||||||
(?:[-+0 #]{0,5}) # optional flags
|
(?:[-+0 #]{0,5}) # optional flags
|
||||||
|
Reference in New Issue
Block a user