From 20bd2f1cd8dd8c8da036d92cfdd2d578ad615b8b Mon Sep 17 00:00:00 2001 From: Lars <61980367+CodeBooster97@users.noreply.github.com> Date: Tue, 21 Jan 2025 10:44:14 +0100 Subject: [PATCH] Update lets_start.md --- docs/introduction/lets_start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/introduction/lets_start.md b/docs/introduction/lets_start.md index db21c627..8152a8e9 100644 --- a/docs/introduction/lets_start.md +++ b/docs/introduction/lets_start.md @@ -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 @@ -55,7 +55,7 @@ async def main() -> None: ) dict_results: Final[list[dict[Any, Any]]] = results.result() - db.close() + db_pool.close() ``` ::: tip