We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10aa16d + fe12b8f commit 8dee525Copy full SHA for 8dee525
1 file changed
docs/introduction/lets_start.md
@@ -40,7 +40,7 @@ Let's assume that we have table `users`:
40
41
```python
42
import asyncio
43
-from typing import Final
+from typing import Final, Any
44
45
from psqlpy import ConnectionPool, QueryResult
46
@@ -55,7 +55,7 @@ async def main() -> None:
55
)
56
57
dict_results: Final[list[dict[Any, Any]]] = results.result()
58
- db.close()
+ db_pool.close()
59
```
60
61
::: tip
0 commit comments