From 0789b4e415c7e459d4d96e65809c67e8f56b9370 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= <tiangolo@gmail.com>
Date: Fri, 23 Aug 2024 14:36:57 -0500
Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A7=20Update=20lint=20script?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 scripts/lint.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lint.sh b/scripts/lint.sh
index 4b279b5fcb..7fab52df57 100755
--- a/scripts/lint.sh
+++ b/scripts/lint.sh
@@ -5,4 +5,4 @@ set -x
 
 mypy sqlmodel
 ruff check sqlmodel tests docs_src scripts
-ruff format sqlmodel tests docs_src --check
+ruff format sqlmodel tests docs_src scripts --check

From 29f6f1ee98cda6530a908ba3ce34d413912e4672 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= <tiangolo@gmail.com>
Date: Fri, 23 Aug 2024 23:02:59 -0500
Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20a=20typo=20in=20?=
 =?UTF-8?q?`docs/virtual-environments.md`?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 docs/virtual-environments.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/virtual-environments.md b/docs/virtual-environments.md
index 541ae52724..ca48de91d6 100644
--- a/docs/virtual-environments.md
+++ b/docs/virtual-environments.md
@@ -558,7 +558,7 @@ The solution to the problems of having all the packages in the global environmen
 
 A virtual environment is a **directory**, very similar to the global one, where you can install the packages for a project.
 
-This way, each project will have it's own virtual environment (`.venv` directory) with its own packages.
+This way, each project will have its own virtual environment (`.venv` directory) with its own packages.
 
 ```mermaid
 flowchart TB