mirror of
https://github.com/yavook/kiwi-scp.git
synced 2025-12-07 00:53:10 +00:00
19 lines
370 B
Python
19 lines
370 B
Python
# local
|
|
from ._subcommand import SubCommand
|
|
|
|
# parent
|
|
from ..config import LoadedConfig
|
|
|
|
|
|
class ShowCommand(SubCommand):
|
|
"""kiwi show"""
|
|
|
|
def __init__(self):
|
|
super().__init__(
|
|
'show',
|
|
description="Show effective kiwi.yml"
|
|
)
|
|
|
|
def _run_instance(self, runner, args):
|
|
print(LoadedConfig.get())
|
|
return True
|