mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-30 20:18:11 +00:00
Fix missing kwarg
This commit is contained in:
parent
d432ff4a9e
commit
9928dc39ae
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ def plot(
|
|||
A matplotlib figure.
|
||||
"""
|
||||
if ax is None:
|
||||
fig = plt.figure(facecolor='w', figsize)
|
||||
fig = plt.figure(facecolor='w', figsize=figsize)
|
||||
ax = fig.add_subplot(111)
|
||||
else:
|
||||
fig = ax.get_figure()
|
||||
|
|
|
|||
Loading…
Reference in a new issue