jw.pkg.cmds.distro.backend.*.Util: Backend -> ..Util

Derive all jw.pkg.cmds.distro.backend.*.Util classes from the common
base class jw.pkg.cmds.distro.backend.Util.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-02-17 12:38:10 +01:00
commit 421e75fc91
4 changed files with 8 additions and 8 deletions

View file

@ -1,9 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from ...Cmd import Cmd from ...Cmd import Cmd
from ..Backend import Backend from ..Util import Util as Base
class Util(Backend): class Util(Base):
def __init__(self, parent: Cmd): def __init__(self, parent: Cmd):
super().__init__(parent) super().__init__(parent)

View file

@ -1,9 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from ...Cmd import Cmd from ...Cmd import Cmd
from ..Backend import Backend from ..Util import Util as Base
class Util(Backend): class Util(Base):
def __init__(self, parent: Cmd): def __init__(self, parent: Cmd):
super().__init__(parent) super().__init__(parent)

View file

@ -1,9 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from ...Cmd import Cmd from ...Cmd import Cmd
from ..Backend import Backend from ..Util import Util as Base
class Util(Backend): class Util(Base):
def __init__(self, parent: Cmd): def __init__(self, parent: Cmd):
super().__init__(parent) super().__init__(parent)

View file

@ -1,9 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from ...Cmd import Cmd from ...Cmd import Cmd
from ..Backend import Backend from ..Util import Util as Base
class Util(Backend): class Util(Base):
def __init__(self, parent: Cmd): def __init__(self, parent: Cmd):
super().__init__(parent) super().__init__(parent)