(self, src, width, height, **kwargs)
| 258 | """ |
| 259 | |
| 260 | def __init__(self, src, width, height, **kwargs): |
| 261 | self.src = src |
| 262 | self.width = width |
| 263 | self.height = height |
| 264 | self.params = kwargs |
| 265 | |
| 266 | def _repr_html_(self): |
| 267 | """return the embed iframe""" |
nothing calls this directly
no outgoing calls
no test coverage detected