Skip to content

Commit 67399f0

Browse files
Update wifi_config.py
1 parent a1af370 commit 67399f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reachy_mini/daemon/app/routers/wifi_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def scan_wifi() -> list[str]:
119119
wifi = scan_available_wifi()
120120

121121
seen = set()
122-
ssids = [x.ssid for x in wifi if x.ssid not in seen and not seen.add(x.ssid)]
122+
ssids = [x.ssid for x in wifi if x.ssid not in seen and not seen.add(x.ssid)] # type: ignore
123123

124124
return ssids
125125

0 commit comments

Comments
 (0)