(self, item: str)
| 181 | ) |
| 182 | |
| 183 | def __getattr__(self, item: str): |
| 184 | try: |
| 185 | return self.data[item] |
| 186 | except KeyError: |
| 187 | raise AttributeError |
| 188 | |
| 189 | def __getstate__(self): |
| 190 | return {"data": self.data, "encodings": self._encodings} |
nothing calls this directly
no outgoing calls
no test coverage detected