From 4f09800da41d4e9c080d154b4aa52d11891d1d36 Mon Sep 17 00:00:00 2001
From: enricgrau <patenric@gmail.com>
Date: Thu, 14 Sep 2023 08:59:40 +0200
Subject: [PATCH] plit bug

---
 pudu/plots.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pudu/plots.py b/pudu/plots.py
index 90f66f6..ad6d82d 100644
--- a/pudu/plots.py
+++ b/pudu/plots.py
@@ -365,7 +365,6 @@ def bar_plot(x, y, z, font_size, fig_size, bar_width, bar_color, borders,
     if z is not None:
         for i, bar in enumerate(bars):
             plt.text(bar.get_x() + bar.get_width()/2 - font_size/50, bar.get_width()/1, z[i], va='bottom', rotation=90) # va='bottom' to align text # va='bottom' to align text
-            print(bar.get_x(), bar.get_width())
     if not borders:
         for spine in plt.gca().spines.values():
             spine.set_visible(False)