style(atlas): cargo fmt on list-systems

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-30 15:36:34 +02:00
co-authored by Claude Opus 4.6
parent 607fd57dcd
commit 3826d6f1d5
+2 -6
View File
@@ -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() {