Skip to content

Commit

Permalink
Update lets_start.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeBooster97 authored Jan 21, 2025
1 parent 12f3c63 commit 20bd2f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/introduction/lets_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Let's assume that we have table `users`:

```python
import asyncio
from typing import Final
from typing import Final, Any

from psqlpy import ConnectionPool, QueryResult

Expand All @@ -55,7 +55,7 @@ async def main() -> None:
)

dict_results: Final[list[dict[Any, Any]]] = results.result()
db.close()
db_pool.close()
```

::: tip
Expand Down

0 comments on commit 20bd2f1

Please sign in to comment.