More ruff linter fixes

This commit is contained in:
Ian Renton
2026-08-15 08:52:26 +01:00
parent d0d6c777da
commit 2ffa4780e8
9 changed files with 16 additions and 16 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.keys():
for key in self._spots.keys(): # noqa: SIM118
spot = self._spots.get(key)
if spot is None:
continue