Skip to content

Commit

Permalink
Do not include colorcet colormaps in matplotlib list
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 28, 2018
1 parent 2f68e30 commit d0b05ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/util.py
Expand Up @@ -576,7 +576,7 @@ def list_cmaps(provider='all'):
if 'matplotlib' in provider:
try:
import matplotlib.cm as cm
cmaps += list(cm.cmap_d)
cmaps += [cmap for cmap in cm.cmap_d if not cmap.startswith('cet_')]
except:
pass
if 'bokeh' in provider:
Expand Down

0 comments on commit d0b05ec

Please sign in to comment.