1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2025-12-07 00:53:10 +00:00
kiwi-scp/src/kiwi/subcommands/show.py

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