Skip to content

Commit 1862fc4

Browse files
committed
Update vuln_scanner.py
1 parent 96776cd commit 1862fc4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

modules/scanners/vuln_scanner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ async def _ble_passive_adv(
593593
gap: Optional[GapReport] = None
594594
seen = False
595595
try:
596-
scanner = BleakScanner()
596+
scanner = BleakScanner() # type: ignore
597597
await scanner.start()
598598
await asyncio.sleep(min(timeout, 8))
599599
await scanner.stop()
@@ -631,7 +631,7 @@ async def _ble_gatt_deep(
631631
return fp_extra, rep
632632

633633
try:
634-
async with BleakClient(target, timeout=timeout) as client:
634+
async with BleakClient(target, timeout=timeout) as client: # type: ignore
635635
if not client.is_connected:
636636
return None, rep
637637

0 commit comments

Comments
 (0)