Skip to content

Commit

Permalink
Reverted switch to OrderedDict
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Dec 19, 2018
1 parent 3bfd847 commit 132c00d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/options.py
Expand Up @@ -539,7 +539,7 @@ def __init__(self, key=None, allowed_keywords=[], merge_keywords=True, max_cycle
self.warning("Invalid options %s, valid options are: %s"
% (repr(invalid_kws), str(allowed_keywords)))

self.kwargs = OrderedDict([(k,kwargs[k]) for k in sorted(kwargs.keys()) if k not in invalid_kws])
self.kwargs = {k:v for k,v in kwargs.items() if k not in invalid_kws}
self._options = []
self._max_cycles = max_cycles

Expand Down

0 comments on commit 132c00d

Please sign in to comment.