From cbf6f026f64b9fd221d7364ba2cf96fe7a15e92f Mon Sep 17 00:00:00 2001 From: Raymonzut Date: Wed, 20 Oct 2021 21:21:25 +0200 Subject: [PATCH] Formatting --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 278c17f..b47f09b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,11 +15,10 @@ use pest::Parser; #[grammar = "grammars/mblf.pest"] struct MblfParser; - #[derive(StructOpt)] struct Cli { #[structopt(parse(from_os_str))] - input_file: std::path::PathBuf, + input_file: std::path::PathBuf, #[structopt(parse(from_os_str))] output_file: std::path::PathBuf, }