diff --git a/GETTING-STARTED.md b/GETTING-STARTED.md
index d9ad395b693..1fc3dd71b6a 100644
--- a/GETTING-STARTED.md
+++ b/GETTING-STARTED.md
@@ -55,18 +55,18 @@ example, we can compute π.
-
-print("Let's compute π:")
-def wallis(n):
- pi = 2
- for i in range(1,n):
- pi *= 4 * i ** 2 / (4 * i ** 2 - 1)
- return pi
-
-pi = wallis(100000)
-s = f"π is approximately {pi:.3f}"
-print(s)
-
+
+ print("Let's compute π:")
+ def wallis(n):
+ pi = 2
+ for i in range(1,n):
+ pi *= 4 * i ** 2 / (4 * i ** 2 - 1)
+ return pi
+
+ pi = wallis(100000)
+ s = f"π is approximately {pi:.3f}"
+ print(s)
+