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() {