mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-25 17:45:55 +02:00
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:
parent
3c8f57f636
commit
421e75fc91
4 changed files with 8 additions and 8 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue