From fce7d54446f27f460f83f6c93e87c1ebb30f71b3 Mon Sep 17 00:00:00 2001 From: Alexander Jung Date: Mon, 21 Mar 2022 13:53:23 +0100 Subject: [PATCH] kraft: Fix linting issue introduced in 1c200bf Signed-off-by: Alexander Jung --- kraft/app/app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kraft/app/app.py b/kraft/app/app.py index b937beb5..5a34a1b7 100644 --- a/kraft/app/app.py +++ b/kraft/app/app.py @@ -362,9 +362,9 @@ def match_plat(plat, target): try: return_code = self.make([ ('UK_DEFCONFIG=%s' % path), - # see #80 and #83, the fallback behavior once name field is missing in the original kraft.yaml - # is to use the parent folder name, and the missing field will be automatically complemented - # (ensured by config.load_config() implementation) + # see #80 and #83, the fallback behavior once name field is missing in the original + # kraft.yaml is to use the parent folder name, and the missing field will be + # automatically complemented (ensured by config.load_config() implementation) ('CONFIG_UK_NAME=%s' % self.config.name), 'defconfig' ])