12 lines
250 B
Python
12 lines
250 B
Python
from ._utils import SubCommand
|
|
|
|
|
|
class ShowCommand(SubCommand):
|
|
def __init__(self):
|
|
super().__init__(
|
|
'show',
|
|
description="Show effective kiwi.yml"
|
|
)
|
|
|
|
def run(self, config, args):
|
|
print(config)
|