(self)
| 47 | raise KeyError("no style with name '%s'" % key) |
| 48 | |
| 49 | def __iter__(self): |
| 50 | return (StyleFactory(style) for style in self._element.style_lst) |
| 51 | |
| 52 | def __len__(self): |
| 53 | return len(self._element.style_lst) |
nothing calls this directly
no test coverage detected