clan/show: fix cli command

This commit is contained in:
Johannes Kirschbauer
2025-07-08 10:15:35 +02:00
parent 79d8d0707b
commit 809a115e58

View File

@@ -2,17 +2,17 @@ import argparse
import logging
from clan_lib.clan.get import get_clan_details
from clan_lib.flake import Flake
log = logging.getLogger(__name__)
def show_command(args: argparse.Namespace) -> None:
flake_path = args.flake.path
meta = get_clan_details(flake_path)
flake: Flake = args.flake
meta = get_clan_details(flake)
print(f"Name: {meta.get('name')}")
print(f"Description: {meta.get('description', '-')}")
print(f"Icon: {meta.get('icon', '-')}")
def register_parser(parser: argparse.ArgumentParser) -> None: