From ccc189b014c5ecffbf8a4511478c64f1a2e3e765 Mon Sep 17 00:00:00 2001 From: naskya Date: Fri, 21 Jun 2024 10:00:49 +0900 Subject: [PATCH] use short path --- src/command/config/update/v1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/config/update/v1.rs b/src/command/config/update/v1.rs index fbe5eb2..5cfd74f 100644 --- a/src/command/config/update/v1.rs +++ b/src/command/config/update/v1.rs @@ -34,7 +34,7 @@ pub(crate) enum Error { #[derive(thiserror::Error, Debug)] pub(crate) enum ReadYamlConfigError { #[error(transparent)] - ReadFile(#[from] std::io::Error), + ReadFile(#[from] io::Error), #[error(transparent)] Yaml(#[from] yaml_rust::ScanError), #[error("invalid config ({0})")]