From 3826d6f1d551d5afdecc2a2f7393095543cffb68 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Mon, 30 Mar 2026 15:36:34 +0200 Subject: [PATCH] style(atlas): cargo fmt on list-systems Co-Authored-By: Claude Opus 4.6 (1M context) --- server/src/bin/atlas.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/server/src/bin/atlas.rs b/server/src/bin/atlas.rs index 8391de083..a5316d970 100644 --- a/server/src/bin/atlas.rs +++ b/server/src/bin/atlas.rs @@ -1395,14 +1395,10 @@ fn cmd_list_systems( } let _ = idx; // suppress unused warning if finished { - conditions.push( - "s.system_id IN (SELECT DISTINCT system_id FROM bodies)".to_string(), - ); + conditions.push("s.system_id IN (SELECT DISTINCT system_id FROM bodies)".to_string()); } if unfinished { - conditions.push( - "s.system_id NOT IN (SELECT DISTINCT system_id FROM bodies)".to_string(), - ); + conditions.push("s.system_id NOT IN (SELECT DISTINCT system_id FROM bodies)".to_string()); } let where_clause = if conditions.is_empty() {