From: Simon Glass Date: Sat, 23 Sep 2023 19:44:02 +0000 (-0600) Subject: moveconfig: Correct use of members not declared in __init__() X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=a6ab4dbd6063b18d4af64b65cfd57c218ed9f9db;p=u-boot.git moveconfig: Correct use of members not declared in __init__() Fix these pylint warnings. Signed-off-by: Simon Glass --- 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