about summary refs log tree commit diff
path: root/check_diff/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'check_diff/src/main.rs')
-rw-r--r--check_diff/src/main.rs8
1 files changed, 2 insertions, 6 deletions
diff --git a/check_diff/src/main.rs b/check_diff/src/main.rs
index 6d07c1b0df6..01c5926c490 100644
--- a/check_diff/src/main.rs
+++ b/check_diff/src/main.rs
@@ -1,4 +1,5 @@
 use clap::Parser;
+
 /// Inputs for the check_diff script
 #[derive(Parser)]
 struct CliInputs {
@@ -16,10 +17,5 @@ struct CliInputs {
 }
 
 fn main() {
-    let args = CliInputs::parse();
-    println!(
-        "remote_repo_url: {:?}, feature_branch: {:?},
-        optional_commit_hash: {:?}, optional_rustfmt_config: {:?}",
-        args.remote_repo_url, args.feature_branch, args.commit_hash, args.rustfmt_config
-    );
+    let _args = CliInputs::parse();
 }