Skip to content

Commit 82b21f9

Browse files
committed
Fix add command and folder layouts
1 parent 78ff949 commit 82b21f9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/tutorial/package.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Add `typer` to your dependencies:
4949
<div class="termy">
5050

5151
```console
52-
$ poetry add "typer"
52+
$ poetry add typer
5353

5454
// It creates a virtual environment for your project
5555
Creating virtualenv rick-portal-gun-w31dJa0b-py3.10 in /home/rick/.cache/pypoetry/virtualenvs
@@ -96,7 +96,7 @@ You can see that you have a generated project structure that looks like:
9696
├── rick_portal_gun
9797
│   └── __init__.py
9898
└── tests
99-
── __init__.py
99+
── __init__.py
100100
```
101101

102102
## Create your app
@@ -411,7 +411,7 @@ The file would live right beside `__init__.py`:
411411
│ ├── __main__.py
412412
│ └── main.py
413413
└── tests
414-
── __init__.py
414+
── __init__.py
415415
```
416416

417417
No other file has to import it, you don't have to reference it in your `pyproject.toml` or anything else, it just works by default, as it is standard Python behavior.

0 commit comments

Comments
 (0)