Skip to content

Commit 7b7666c

Browse files
committed
chore: update demo to the latest cookiecutter-robust-python
1 parent 74102f8 commit 7b7666c

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Robust Python Demo."""
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""Command-line interface."""
2+
3+
import typer
4+
5+
6+
app: typer.Typer = typer.Typer()
7+
8+
9+
@app.command(name="robust-python-demo")
10+
def main() -> None:
11+
"""Robust Python Demo."""
12+
13+
14+
if __name__ == "__main__":
15+
app() # pragma: no cover

build/lib/robust_python_demo/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)