diff --git a/keeks/bankroll.py b/keeks/bankroll.py index 5566f4c..92e8c98 100644 --- a/keeks/bankroll.py +++ b/keeks/bankroll.py @@ -183,7 +183,7 @@ def plot_history(self, fname=None): If provided, saves the plot to the specified filename instead of displaying it. """ plt.figure() - plt.plot(list(range(len(self.history))), self.history, fmt="bo-") + plt.plot(list(range(len(self.history))), self.history, "bo-") if fname: plt.savefig(fname) else: