From 673bdbd32446b161866f75bde47d9014676889aa Mon Sep 17 00:00:00 2001 From: xatier Date: Sun, 11 Aug 2019 05:50:11 -0700 Subject: [PATCH] fix(truthy): Fix extra whitespace --- yamllint/rules/truthy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yamllint/rules/truthy.py b/yamllint/rules/truthy.py index 3cf058b..7dd778f 100644 --- a/yamllint/rules/truthy.py +++ b/yamllint/rules/truthy.py @@ -101,7 +101,7 @@ from yamllint.linter import LintProblem TRUTHY = ['YES', 'Yes', 'yes', 'NO', 'No', 'no', - 'TRUE', 'True', 'true', + 'TRUE', 'True', 'true', 'FALSE', 'False', 'false', 'ON', 'On', 'on', 'OFF', 'Off', 'off']