From ef75dfdd1ca2e81f0520a908f262212ccefac243 Mon Sep 17 00:00:00 2001 From: ArianHamdi <59548833+ArianHamdi@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:03:52 +0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo=20in=20the=20cr?= =?UTF-8?q?eate-db-and-table?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/tutorial/create-db-and-table.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/create-db-and-table.md b/docs/tutorial/create-db-and-table.md index 978413c334..c1076d5887 100644 --- a/docs/tutorial/create-db-and-table.md +++ b/docs/tutorial/create-db-and-table.md @@ -446,7 +446,7 @@ Now we would be able to, for example, import the `Hero` class in some other file We prevented the side effects when importing something from your `app.py` file. -But we still want it to **create the database and table** when we call it with Python directly as an independent script from the terminal, just as as above. +But we still want it to **create the database and table** when we call it with Python directly as an independent script from the terminal, just as above. /// tip