Skip to content

Commit

Permalink
Made layoutboxes private
Browse files Browse the repository at this point in the history
  • Loading branch information
jklymak committed Jan 24, 2018
1 parent 7e3699e commit 52a53a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/axes/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ def __getstate__(self):
# that point.
state = super(_AxesBase, self).__getstate__()
state['_cachedRenderer'] = None
state.pop('layoutbox')
state.pop('_layoutbox')
state.pop('_poslayoutbox')

return state
Expand Down

0 comments on commit 52a53a6

Please sign in to comment.