(self, thread_id, q, port, command, zone, zgrab_collection)
| 272 | """ |
| 273 | |
| 274 | def __init__(self, thread_id, q, port, command, zone, zgrab_collection): |
| 275 | threading.Thread.__init__(self) |
| 276 | self.thread_id = thread_id |
| 277 | self.port = port |
| 278 | self.zgrab_collection = zgrab_collection |
| 279 | self.zone = zone |
| 280 | self.run_command = command |
| 281 | self.q = q |
| 282 | self.logger = LoggingUtil.create_log(__name__) |
| 283 | |
| 284 | def run(self): |
| 285 | self.logger.debug("Starting Thread-" + str(self.thread_id)) |
nothing calls this directly
no test coverage detected