diff --git a/vint/linting/policy/prohibit_unnecessary_double_quote.py b/vint/linting/policy/prohibit_unnecessary_double_quote.py index 69cf5d2..7be7a1b 100644 --- a/vint/linting/policy/prohibit_unnecessary_double_quote.py +++ b/vint/linting/policy/prohibit_unnecessary_double_quote.py @@ -11,6 +11,7 @@ # see `:help expr-string` _special_char_matcher = re.compile( r'(\'|' # allow single quote + r'\$|' # allow dollar r'\\(' # prefix back slash r'(?P[0-7]{1,3})' r'|(?P[xX][0-9a-fA-F]{1,2})'