(self, scan_id: str)
| 187 | return scan_id |
| 188 | |
| 189 | def get_scan_state(self, scan_id: str) -> Optional[ReconScanState]: |
| 190 | with self._lock: |
| 191 | return self.active_scans.get(scan_id) |
| 192 | |
| 193 | def cancel_scan(self, scan_id: str) -> bool: |
| 194 | with self._lock: |
no test coverage detected