Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
* origin/main:
  🐛 fix incompatible of `MatplotlibDeprecationWarning`
  • Loading branch information
lgienapp committed Feb 26, 2024
2 parents 4b072da + a874a81 commit e8b3764
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 e8b3764

Please sign in to comment.