This commit is contained in:
Jörn-Michael Miehe 2020-08-10 16:15:10 +02:00
parent 3cb195fe1a
commit 81127096cd
2 changed files with 3 additions and 4 deletions

View file

@ -37,4 +37,4 @@ class Runner:
if __name__ == 'kiwi.runner': if __name__ == 'kiwi.runner':
Runner().setup_all() _ = Runner()

View file

@ -1,5 +1,4 @@
from ..config import LoadedConfig from ..config import LoadedConfig
from ..core import Parser
from ._utils import SubCommand from ._utils import SubCommand
@ -7,8 +6,8 @@ from ._utils import SubCommand
class ShowCommand(SubCommand): class ShowCommand(SubCommand):
def __init__(self): def __init__(self):
super().__init__( super().__init__(
'logs', 'show',
description="Show logs of a project" description="Show effective kiwi.yml"
) )
def run(self): def run(self):