Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions packages/overture-schema-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
dependencies = [
"overture-schema-core",
"pydantic>=2.0",
"pyyaml>=6.0.2",
"click>=8.0",
"rich>=13.0",
"yamlcore>=0.0.4",
]
description = "Command-line interface for Overture Maps schema validation and JSON Schema generation"
dynamic = ["version"]
Expand Down
30 changes: 2 additions & 28 deletions packages/overture-schema-cli/src/overture/schema/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,5 @@
"""CLI subpackage for overture-schema."""

from .commands import (
cli,
create_union_type_from_models,
handle_generic_error,
handle_validation_error,
load_input,
perform_validation,
resolve_types,
)
from .types import (
ErrorLocation,
ModelDict,
UnionType,
ValidationErrorDict,
)
from .commands import cli

__all__ = [
"cli",
"create_union_type_from_models",
"handle_generic_error",
"handle_validation_error",
"load_input",
"perform_validation",
"resolve_types",
"ErrorLocation",
"ModelDict",
"UnionType",
"ValidationErrorDict",
]
__all__ = ["cli"]
Loading
Loading