Skip to content

Commit

Permalink
fixup! Attempt to fix CI fail with simpler Clap import
Browse files Browse the repository at this point in the history
  • Loading branch information
fishface60 committed Oct 10, 2021
1 parent 699b26e commit 2599b56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clap_derive/examples/hostname.rs
Expand Up @@ -23,10 +23,10 @@
//!
//! This example omits the implementation of displaying address config.

use clap::{AppSettings, Clap};
use clap::Clap;

#[derive(Clap, Debug)]
#[clap(name = env!("CARGO_CRATE_NAME"), setting = AppSettings::Multicall)]
#[clap(name = env!("CARGO_CRATE_NAME"), setting = clap::AppSettings::Multicall)]
enum Args {
/// Show the configured hostname
Hostname,
Expand Down

0 comments on commit 2599b56

Please sign in to comment.