From 6dd98f0d8d6af0cd79602bcc957557fe13268f15 Mon Sep 17 00:00:00 2001 From: danielwilczak101 <44122838+danielwilczak101@users.noreply.github.com> Date: Thu, 12 Nov 2020 16:49:34 -0500 Subject: [PATCH] fixed omw --- src/database/matplotlib_graph.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/database/matplotlib_graph.py b/src/database/matplotlib_graph.py index c8b41b6..43df5dd 100644 --- a/src/database/matplotlib_graph.py +++ b/src/database/matplotlib_graph.py @@ -44,6 +44,10 @@ class Matplotlib_Graph: #if self.ylabel is not None: xlabel = self.ylabel #if self.title is not None: xlabel = self.title + plt.xlabel(self.xlabel) + plt.ylabel(self.ylabel) + plt.title(self.title) + # Show the plot plt.show()