Skip to content

FrozenDict breaks Exploring Elements notebook #111

@rgbkrk

Description

@rgbkrk

The following code breaks in the example notebook titled "Exploring Elements"

attrs = vid.attributes.copy()
attrs['controls'] = False
attrs['autoplay'] = False
hand.update(video(vid.children, **attrs))
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
Cell In[6], line 1
----> 1 attrs = vid.attributes.copy()
      2 attrs['controls'] = False
      3 attrs['autoplay'] = False

File ~/code/src/github.com/nteract/vdom/vdom/frozendict.py:28, in FrozenDict.__setitem__(self, *args, **kwargs)
     27 def __setitem__(self, *args, **kwargs):
---> 28     return self.__readonly__(super(FrozenDict, self).__setitem__, *args, **kwargs)

File ~/code/src/github.com/nteract/vdom/vdom/frozendict.py:23, in FrozenDict.__readonly__(self, func, *args, **kwargs)
     21 def __readonly__(self, func, *args, **kwargs):
     22     if self.frozen:
---> 23         raise ValueError("Can not modify FrozenDict")
     24     else:
     25         return func(*args, **kwargs)

ValueError: Can not modify FrozenDict

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions