From 157f653780a52f078f20fc2bf68f01b2f3360be4 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 6 May 2025 10:58:55 +0200 Subject: [PATCH] uptime: merge two imports --- src/uu/uptime/src/uptime.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/uu/uptime/src/uptime.rs b/src/uu/uptime/src/uptime.rs index d16dea1a6..240a35371 100644 --- a/src/uu/uptime/src/uptime.rs +++ b/src/uu/uptime/src/uptime.rs @@ -9,12 +9,10 @@ use chrono::{Local, TimeZone, Utc}; use clap::ArgMatches; use std::io; use thiserror::Error; -use uucore::error::UError; +use uucore::error::{UError, UResult}; use uucore::libc::time_t; use uucore::uptime::*; -use uucore::error::UResult; - use clap::{Arg, ArgAction, Command, ValueHint, builder::ValueParser}; use uucore::{format_usage, help_about, help_usage};