Fix missing kwarg

This commit is contained in:
Ben Letham 2018-11-02 17:27:45 -07:00
parent d432ff4a9e
commit 9928dc39ae

View file

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