summaryrefslogtreecommitdiffstats
path: root/tools/lint/yamllint_/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lint/yamllint_/__init__.py')
-rw-r--r--tools/lint/yamllint_/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/lint/yamllint_/__init__.py b/tools/lint/yamllint_/__init__.py
index 2244fabd3f..d0087fbbc4 100644
--- a/tools/lint/yamllint_/__init__.py
+++ b/tools/lint/yamllint_/__init__.py
@@ -15,7 +15,9 @@ from mozlint import result
from mozlint.pathutils import get_ancestors_by_name
from mozlint.util.implementation import LintProcess
-YAMLLINT_FORMAT_REGEX = re.compile("(.*):(.*):(.*): \[(error|warning)\] (.*) \((.*)\)$")
+YAMLLINT_FORMAT_REGEX = re.compile(
+ r"(.*):(.*):(.*): \[(error|warning)\] (.*) \((.*)\)$"
+)
results = []