fix: resolve CI/CD test and lint failures
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-03 05:31:44 +00:00
parent f3d7ce965e
commit 21568175f6

View File

@@ -1,4 +1,11 @@
"""CLI entry point for DataForge CLI."""
"""CLI commands module for DataForge CLI."""
import glob
import os
from pathlib import Path
from typing import List, Optional
import click
from .commands import (
convert,
@@ -8,8 +15,6 @@ from .commands import (
typecheck,
)
import click
@click.group()
@click.version_option(version="1.0.0")