(self, batch_size: int = 50, enable_gc: bool = True)
| 70 | """Generic batch processor with progress tracking and error handling""" |
| 71 | |
| 72 | def __init__(self, batch_size: int = 50, enable_gc: bool = True): |
| 73 | self.batch_size = batch_size |
| 74 | self.enable_gc = enable_gc |
| 75 | |
| 76 | def process_in_batches( |
| 77 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected