8000 Compatibility with latest MPL 3.8 (Dev) by cvanelteren · Pull Request #433 · proplot-dev/proplot · GitHub
[go: up one dir, main page]

Skip to content

Compatibility with latest MPL 3.8 (Dev) #433

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update proplot/colors.py
Co-authored-by: Scott Staniewicz <scott.stanie@gmail.com>
  • Loading branch information
cvanelteren and scottstanie authored Aug 11, 2023
commit c0fe4c60f54d35fd395b73f6eda7c57f15ebf88f
2 changes: 1 addition & 1 deletion proplot/colors.py
Original file line number Diff line number Diff line change
Expand Up @@ -2889,7 +2889,7 @@ def _init_cmap_database():
}
database = ColormapDatabase(database)
setattr(mcm, attr, database)
elif hasattr("mcm", "_gen_cmap_registry"):
elif hasattr(mcm, "_gen_cmap_registry"):
database = ColormapDatabase(mcm._gen_cmap_registry())
else:
raise ValueError("ColormapDatabase not initialized")
Expand Down
0