various fixes

This commit is contained in:
Jörg Thalheim
2025-08-26 12:59:49 +02:00
parent 1dda60847e
commit 63697ac4b1
5 changed files with 12 additions and 12 deletions

View File

@@ -1,12 +1,13 @@
from __future__ import annotations
import argparse
import logging
from typing import TYPE_CHECKING
from clan_lib.templates import list_templates
if TYPE_CHECKING:
import argparse
from clan_lib.nix_models.clan import TemplateClanType
log = logging.getLogger(__name__)