diff --git a/README.md b/README.md
index fadc74f..f1dcbd2 100644
--- a/README.md
+++ b/README.md
@@ -1204,6 +1204,19 @@ pyplot.savefig(<filename>, transparent=True)
 ```
 
 
+Progress Bar
+------------
+```python
+# $ pip3 install tqdm
+from tqdm import tqdm
+from time import sleep
+for i in tqdm(range(100)):
+    sleep(0.02)
+for i in tqdm([1, 2, 3]):
+    sleep(0.2)
+```
+
+
 Table
 -----
 #### Prints CSV file as ASCII table:
@@ -1464,19 +1477,6 @@ def tracer(func):
 ```
 
 
-Progress Bar
-------------
-```python
-# $ pip3 install tqdm
-from tqdm import tqdm
-from time import sleep
-for i in tqdm(range(100)):
-    sleep(0.02)
-for i in tqdm([1, 2, 3]):
-    sleep(0.2)
-```
-
-
 Basic Script Template
 ---------------------
 ```python