You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spiel/orate/main.py

14 lines
243 B
Python

from pathlib import Path
import typer
from rich.console import Console
from rich.text import Text
app = typer.Typer()
console = Console()
@app.command()
def display(path: Path) -> None:
console.print(Text(str(path), justify="center"))