Skip to content

Commit

Permalink
Merge pull request #31 from frostime/main
Browse files Browse the repository at this point in the history
🐛 fix incompatible of `MatplotlibDeprecationWarning`
  • Loading branch information
lgienapp authored Jan 17, 2024
2 parents bc156cd + dbd9bf3 commit a874a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aquarel/theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def __enter__(self):

def __exit__(self, exc_type, exc_val, exc_tb):
with warnings.catch_warnings():
warnings.simplefilter("ignore", mpl.cbook.MatplotlibDeprecationWarning)
warnings.simplefilter("ignore", mpl.MatplotlibDeprecationWarning)
mpl.rcParams.update(self.rcparams_orig)
self.apply_transforms()

Expand Down

0 comments on commit a874a81

Please sign in to comment.