remove typer import

This commit is contained in:
onyx-and-iris 2025-07-24 04:21:48 +01:00
parent 436e4d5345
commit 8c37ce1fc0

View File

@ -1,12 +1,7 @@
"""module containing validation functions."""
import typer
from .context import Context
# type alias for an option that is skipped when the command is run
skipped_option = typer.Option(parser=lambda _: _, hidden=True, expose_value=False)
def input_in_inputs(ctx: Context, input_name: str) -> bool:
"""Check if an input is in the input list."""