mirror of
https://github.com/esphome/esphome.git
synced 2024-12-24 16:58:07 +01:00
Fix invalid escape sequences in regex (#1814)
This commit is contained in:
parent
86ac7f3a59
commit
4c4099966a
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user