From af6fc0e82e100bc2e384a9a82fd412057853f7d8 Mon Sep 17 00:00:00 2001 From: Shannon Skipper Date: Tue, 21 May 2024 11:00:45 -0700 Subject: [PATCH] Remove an unused `use` declaration in the docs It appears `PathBuf` is unused here since the example now shows `u32`. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 9570bfd..427d1c5 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,6 @@ input=testing ## Compatible Types [`FileOrStdin`] can wrap any type that matches the trait bounds for `Arg`: `FromStr` and `Clone` ```rust -use std::path::PathBuf; use clap::Parser; use clap_stdin::FileOrStdin;