From f1d38f5b3dcf6da2aad914517aefc730bb0b8590 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Fri, 8 Sep 2017 12:41:24 -0400 Subject: [PATCH] Lint: add missing return to CheckHarnessFeatures().run --- tools/lint/lib/checks/harnessfeatures.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/lint/lib/checks/harnessfeatures.py b/tools/lint/lib/checks/harnessfeatures.py index acc59fcdb7..18d7dd0fd8 100644 --- a/tools/lint/lib/checks/harnessfeatures.py +++ b/tools/lint/lib/checks/harnessfeatures.py @@ -59,3 +59,5 @@ class CheckHarnessFeatures(Check): return 'Missing: `features: [%s]`' % ', '.join(list(result['missing'])) else: return 'Missing from `features`: %s' % ', '.join(list(result['missing'])) + else: + return