Skip to content

Commit 20bd2f1

Browse files
Update lets_start.md
1 parent 12f3c63 commit 20bd2f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/introduction/lets_start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Let's assume that we have table `users`:
4040

4141
```python
4242
import asyncio
43-
from typing import Final
43+
from typing import Final, Any
4444

4545
from psqlpy import ConnectionPool, QueryResult
4646

@@ -55,7 +55,7 @@ async def main() -> None:
5555
)
5656

5757
dict_results: Final[list[dict[Any, Any]]] = results.result()
58-
db.close()
58+
db_pool.close()
5959
```
6060

6161
::: tip

0 commit comments

Comments
 (0)