diff --git a/brick/general/feedback.py b/brick/general/feedback.py
index 814a05e40f45ac7039fc4cc54dc341340cc87364..a0973cc5d375ee7fa35157a0707aad233fe2ef00 100644
--- a/brick/general/feedback.py
+++ b/brick/general/feedback.py
@@ -57,10 +57,10 @@ def PlotSomas(somas: Sequence[soma_t], som_nfo: dict, axes: dict) -> None:
     for soma in somas:
         axes[soma.uid] = ot_.PlotLMap(som_nfo["lmp"], labels=soma.uid)
         pl_.title(f"Soma.{soma.uid}")
-    # pl_.matshow(som_nfo["influence_map"].max(axis=0)), pl_.title("Soma Influencess")
-    # pl_.show(block=True)
-    # pl_.matshow(som_nfo["dist_to_closest"].max(axis=0)), pl_.title("Soma Distances")
-    # pl_.show(block=True)
+    pl_.matshow(som_nfo["influence_map"].max(axis=0)), pl_.title("Soma Influencess")
+    pl_.show(block=True)
+    pl_.matshow(som_nfo["dist_to_closest"].max(axis=0)), pl_.title("Soma Distances")
+    pl_.show(block=True)
 
 
 def PlotExtensions(
diff --git a/nutrimorph.py b/nutrimorph.py
index c51aaff421bdeb708f0a4817c84550ff0153f2b2..6872858658e240ff42d6e9c3b947669f885577a0 100644
--- a/nutrimorph.py
+++ b/nutrimorph.py
@@ -96,7 +96,7 @@ image = io_.imread(data_path)
 
 # Image size verification - simple version without user interface
 image = in_.ImageVerification(image, channel)
-# TODO make a user friendly interface (PySide2) BUT bug with the importation of Shiboken2 on Windows8.1.
+# TODO make a user friendly interface (PySide2) /!\ conflicts between some versions of PySide2 and Python3
 
 image = image[:, 512:, 512:]  # 562
 img_shape = image.shape