From 3f68c12ff6b3983287c12ed30b4c6783cbb7293b Mon Sep 17 00:00:00 2001
From: kirbylife <gabriel13m@gmail.com>
Date: Sat, 9 Nov 2019 23:08:56 -0600
Subject: [PATCH] added link to check the colors

---
 afutc/pieces.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/afutc/pieces.py b/afutc/pieces.py
index 61cf805..e4a979a 100644
--- a/afutc/pieces.py
+++ b/afutc/pieces.py
@@ -4,6 +4,8 @@ PIECES = [[[0, 1], [0, 1], [1, 1]], [[0, 1, 0], [1, 1, 1]], [[1, 1], [1, 1]],
           [[1, 1, 0], [0, 1, 1]], [[0, 1, 1], [1, 1, 0]], [[1], [1], [1], [1]],
           [[0, 1, 0], [0, 1, 0], [1, 1, 1]]]
 
+# To see the color number check this link:
+# https://i.stack.imgur.com/7AtMc.png
 __colors = [5, 7, 9, 11, 13, 15, 35, 41, 123, 205, 219]
 
 for n, piece in enumerate(PIECES):