From a6ab4dbd6063b18d4af64b65cfd57c218ed9f9db Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 23 Sep 2023 13:44:02 -0600 Subject: [PATCH] moveconfig: Correct use of members not declared in __init__() Fix these pylint warnings. Signed-off-by: Simon Glass --- tools/moveconfig.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/moveconfig.py b/tools/moveconfig.py index 2234f28a77..1dff891593 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -410,6 +410,10 @@ class Slot: self.parser = KconfigParser(args, self.build_dir) self.state = STATE_IDLE self.failed_boards = set() + self.defconfig = None + self.log = '' + self.current_src_dir = None + self.proc = None def __del__(self): """Delete the working directory -- 2.39.5