Skip to content

Commit 3ab7ad2

Browse files
fix: fix indentation in command line argument definition
1 parent 9218a07 commit 3ab7ad2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/clparse.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,9 @@ pub fn parse_command_line() -> ArgMatches<'static> {
8787
.takes_value(true)
8888
.possible_values(&["mainnet", "testnet", "devnet"])
8989
.default_value("mainnet")
90-
.help("Network to deploy on"),
91-
) .subcommand(
90+
.help("Network to deploy on")
91+
)
92+
.subcommand(
9293
SubCommand::with_name("examples")
9394
.about("Show usage examples for OSVM CLI commands")
9495
.arg(

0 commit comments

Comments
 (0)