16 changed files with
28 additions and
28 deletions
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Dup(Base):
|
|
|
|
|
class Dup(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Install(Base):
|
|
|
|
|
class Install(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Refresh(Base):
|
|
|
|
|
class Refresh(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from ..Backend import Backend
|
|
|
|
|
|
|
|
|
|
class Base(Backend):
|
|
|
|
|
class Util(Backend):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Dup(Base):
|
|
|
|
|
class Dup(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Install(Base):
|
|
|
|
|
class Install(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Refresh(Base):
|
|
|
|
|
class Refresh(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from ..Backend import Backend
|
|
|
|
|
|
|
|
|
|
class Base(Backend):
|
|
|
|
|
class Util(Backend):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Dup(Base):
|
|
|
|
|
class Dup(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Install(Base):
|
|
|
|
|
class Install(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Refresh(Base):
|
|
|
|
|
class Refresh(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from ..Backend import Backend
|
|
|
|
|
|
|
|
|
|
class Base(Backend):
|
|
|
|
|
class Util(Backend):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Dup(Base):
|
|
|
|
|
class Dup(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Install(Base):
|
|
|
|
|
class Install(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,9 +3,9 @@
|
|
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from .Base import Base
|
|
|
|
|
from .Util import Util
|
|
|
|
|
|
|
|
|
|
class Refresh(Base):
|
|
|
|
|
class Refresh(Util):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|
|
|
|
|
|
|
|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
from ...Cmd import Cmd
|
|
|
|
|
from ..Backend import Backend
|
|
|
|
|
|
|
|
|
|
class Base(Backend):
|
|
|
|
|
class Util(Backend):
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: Cmd):
|
|
|
|
|
super().__init__(parent)
|