From 7e3893716decf05b46cf1eef67135f4bf5b7da94 Mon Sep 17 00:00:00 2001
From: Remy Moll <mollator2@gmail.com>
Date: Thu, 15 Oct 2020 13:29:54 +0200
Subject: [PATCH] without useless printouts

---
 clock/api/converter.py | 2 +-
 clock/api/led.py       | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/clock/api/converter.py b/clock/api/converter.py
index 624502b..cdecff1 100644
--- a/clock/api/converter.py
+++ b/clock/api/converter.py
@@ -74,7 +74,7 @@ def weather_converter(name):
 
     icons = Image.open(icon_spritesheet)
     icons_full = np.array(icons)
-    print(name)
+
     icon_loc = ["sun","moon","sun and clouds", "moon and clouds", "cloud","fog and clouds","2 clouds", "3 clouds", "rain and cloud", "rain and clouds", "rain and cloud and sun", "rain and cloud and moon", "thunder and cloud", "thunder and cloud and moon", "snow and cloud", "snow and cloud and moon", "fog","fog night"]
     #ordered 1 2 \n 3 4 \ 5 5 ...
     try:
diff --git a/clock/api/led.py b/clock/api/led.py
index 9d2b56f..195b4f3 100644
--- a/clock/api/led.py
+++ b/clock/api/led.py
@@ -91,7 +91,6 @@ class OutputHandler():
 
 
         face2_3d = converter.weather_converter(weather)
-        print("WEATHER",face2_3d.shape)
         face = np.zeros((max(face1_3d.shape[0],face2_3d.shape[0]),face1_3d.shape[1]+face2_3d.shape[1],3))
 
         face[:face1_3d.shape[0],:face1_3d.shape[1],...] = face1_3d