(self, kwargs)
| 300 | self.use_threads = use_threads |
| 301 | |
| 302 | def _patch_kwargs(self, kwargs): |
| 303 | if 'use_threads' in kwargs: |
| 304 | raise Exception( |
| 305 | ('Invalid use of dataset_reader, do not specify' |
| 306 | ' use_threads')) |
| 307 | kwargs['use_threads'] = use_threads |
| 308 | |
| 309 | def to_table(self, dataset, **kwargs): |
| 310 | self._patch_kwargs(kwargs) |
no outgoing calls
no test coverage detected