chore: collapse multi-line argument definitions into single lines across multiple modules

This commit is contained in:
2025-11-04 07:10:37 +00:00
parent e9ced4a493
commit d58e2b56f2
44 changed files with 163 additions and 469 deletions
+1 -3
View File
@@ -140,9 +140,7 @@ class APICache:
total_entries = cursor.fetchone()[0]
current_time = int(time.time())
cursor.execute(
"SELECT COUNT(*) FROM api_cache WHERE expires_at > ?", (current_time,)
)
cursor.execute("SELECT COUNT(*) FROM api_cache WHERE expires_at > ?", (current_time,))
valid_entries = cursor.fetchone()[0]
cursor.execute(
+1 -3
View File
@@ -161,9 +161,7 @@ class ToolCache:
total_entries = cursor.fetchone()[0]
current_time = int(time.time())
cursor.execute(
"SELECT COUNT(*) FROM tool_cache WHERE expires_at > ?", (current_time,)
)
cursor.execute("SELECT COUNT(*) FROM tool_cache WHERE expires_at > ?", (current_time,))
valid_entries = cursor.fetchone()[0]
cursor.execute(