F
5cfced8855
Some checks failed
Build Sphinx Docs Set / Build Docs (pull_request) Failing after 1s
Build Project / Build Project (3.10) (pull_request) Failing after 1s
Build Project / Build Project (3.11) (pull_request) Failing after 1s
Build Project / Build Project (3.12) (pull_request) Failing after 1s
Test with tox / Test with tox (3.10) (pull_request) Failing after 1s
Test with tox / Test with tox (3.11) (pull_request) Failing after 1s
Test with tox / Test with tox (3.12) (pull_request) Failing after 1s
Resolves unresolved merge conflict markers left in committed files across the annotations, view, data, and CLI packages. Updates all remaining imports from the old utils.* namespace to ria_toolkit_oss.datatypes, ria_toolkit_oss.io, and ria_toolkit_oss.view equivalents.
28 lines
607 B
Python
28 lines
607 B
Python
# flake8: noqa: F401
|
|
"""
|
|
This module contains all the CLI bindings for the ria package.
|
|
"""
|
|
|
|
|
|
from .annotate import annotate
|
|
from .capture import capture
|
|
from .combine import combine
|
|
from .convert import convert
|
|
|
|
# Import all command functions
|
|
from .discover import discover
|
|
from .generate import generate
|
|
|
|
# from .generate import generate
|
|
from .init import init
|
|
from .split import split
|
|
from .transform import transform
|
|
from .transmit import transmit
|
|
from .view import viewe
|
|
|
|
# Aliases
|
|
synth = generate
|
|
|
|
# All commands will be automatically registered by cli.py
|
|
# Commands must be click.Command instances
|