1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-09-28 18:51:08 +02:00

🛠️ Fix incorrect CSV format in OutputFormat::CSV. (#10)

Dieser Commit ist enthalten in:
Chaoscaot 2024-04-27 20:19:10 +02:00 committet von GitHub
Ursprung d20940f89b
Commit 82108d9e36
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: B5690EEEBB952194

2
schemsearch-cli/src/sinks.rs Normale Datei → Ausführbare Datei
Datei anzeigen

@ -71,7 +71,7 @@ impl OutputFormat {
pub fn start(&self, total: u32, search_behavior: &SearchBehavior, start_time: u128) -> String {
match self {
OutputFormat::Text => format!("Starting search in {} schematics\n", total),
OutputFormat::CSV => format!("Name,X,Y,Z,Percent\n"),
OutputFormat::CSV => "Name,X,Y,Z,Percent\n".to_owned(),
OutputFormat::JSON => format!("{}\n", serde_json::to_string(&JsonEvent::Init(InitEvent {
total,
search_behavior: search_behavior.clone(),