mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 00:49:33 +02:00
wic: don't inherit classes from object
All classes in Python3 are new style classes and don't need to be inherited from object. Wic code works fine without this inheritance even with Python2, so it's harmless to remove it. [YOCTO #9412] (From OE-Core rev: a146b03ee7d0aa5bc1722da5977a5952782b69bf) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
52ce79dcba
commit
dac0e809b7
@@ -110,7 +110,7 @@ def systemidtype(arg):
|
||||
|
||||
return arg
|
||||
|
||||
class KickStart(object):
|
||||
class KickStart():
|
||||
""""Kickstart parser implementation."""
|
||||
|
||||
def __init__(self, confpath):
|
||||
|
||||
Reference in New Issue
Block a user