More ruff linter fixes

This commit is contained in:
Ian Renton
2026-08-15 08:50:03 +01:00
parent a6e54f524d
commit 335d15bfa0
10 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ class APIDxStatsHandler(tornado.web.RequestHandler):
one_hour_ago = (datetime.now(pytz.UTC) - timedelta(hours=1)).timestamp()
counts = Counter()
for key in self._spots:
for key in self._spots.keys():
spot = self._spots.get(key)
if spot is None:
continue