(self, stocks, downloader)
| 18 | |
| 19 | class StockDownloaderProcess(multiprocessing.Process): |
| 20 | def __init__(self, stocks, downloader): |
| 21 | super().__init__() |
| 22 | self.stocks = stocks |
| 23 | self.downloader = downloader |
| 24 | def run(self): |
| 25 | self.downloader.download(self.stocks) |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected