More ruff linter fixes

This commit is contained in:
Ian Renton
2026-08-15 08:43:19 +01:00
parent dd89ff4af7
commit a6e54f524d
43 changed files with 99 additions and 153 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ class Alert:
# DX operator name lookup, using QRZ.com/HamQTH.
if self.dx_calls and not self.dx_names:
self.dx_names = list(map(lambda c: get_call_info(c, credentials).name, self.dx_calls))
self.dx_names = [get_call_info(c, credentials).name for c in self.dx_calls]
except Exception:
logger.exception("Exception while inferring missing data from spot")