Skip to content

Commit 8dee525

Browse files
authored
Merge pull request #123 from CodeBooster97/patch-1
Updated lets_start.md
2 parents 10aa16d + fe12b8f commit 8dee525

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)