Skip to content

Commit 36eac82

Browse files
committed
Merge branch 'main' of github.com:qaspen-python/psqlpy
2 parents d67dcb3 + 8dee525 commit 36eac82

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)