fixed omw

This commit is contained in:
danielwilczak101
2020-11-12 16:49:34 -05:00
parent 5a72a8493d
commit 6dd98f0d8d

View File

@ -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()