Skip to content

Commit 9cb1414

Browse files
committed
Fix CLI tests
1 parent a63270a commit 9cb1414

1 file changed

Lines changed: 4 additions & 16 deletions

File tree

pineappl_cli/src/lib.rs

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -53,40 +53,28 @@ pub trait Subcommand {
5353
}
5454

5555
/// TODO.
56+
#[expect(
57+
missing_docs,
58+
reason = "documenting the enum variants will overwrite the documentation from `*::Opts`"
59+
)]
5660
#[enum_dispatch(Subcommand)]
5761
#[derive(Parser)]
5862
pub enum SubcommandEnum {
59-
/// TODO.
6063
Analyze(analyze::Opts),
61-
/// TODO.
6264
Channels(channels::Opts),
63-
/// TODO.
6465
Convolve(convolve::Opts),
65-
/// TODO.
6666
Diff(diff::Opts),
67-
/// TODO.
6867
Evolve(evolve::Opts),
69-
/// TODO.
7068
Export(export::Opts),
71-
/// TODO.
7269
Help(help::Opts),
73-
/// TODO.
7470
Import(import::Opts),
75-
/// TODO.
7671
Merge(merge::Opts),
77-
/// TODO.
7872
Orders(orders::Opts),
79-
/// TODO.
8073
Plot(plot::Opts),
81-
/// TODO.
8274
Pull(pull::Opts),
83-
/// TODO.
8475
Read(read::Opts),
85-
/// TODO.
8676
Subgrids(subgrids::Opts),
87-
/// TODO.
8877
Uncert(uncert::Opts),
89-
/// TODO.
9078
Write(write::Opts),
9179
}
9280

0 commit comments

Comments
 (0)