(self, wrapped, encoding)
| 167 | """ |
| 168 | # pylint: disable=too-few-public-methods |
| 169 | def __init__(self, wrapped, encoding): |
| 170 | super().__init__(wrapped) |
| 171 | self.wrapper_setattr('encoding', encoding) |
| 172 | |
| 173 | def write(self, s): |
| 174 | """ |
nothing calls this directly
no test coverage detected