INNER CODE UNIT · Python
path
sign-language-translator/sign-language-translator · sign_language_translator/cli.py:52
def path():
"""
Display the assets root directory.
"""
from sign_language_translator.config.assets import Assets
click.echo(Assets.ROOT_DIR)
# Display a tree of downloaded resource files
@assets.command()
@click.option(
"--files",
"-f",
default=True,
show_default=True,
help="Include files as leaf nodes in the directory tree.",