Skip to content

Commit

Permalink
update console output
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg committed Jun 3, 2024
1 parent 6065329 commit 3b9034b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/tutorial/parameter-types/enum.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,6 @@ Usage: main.py [OPTIONS]

Options:
--network [simple|conv|lstm] [default: simple]
--install-completion Install completion for the current shell.
--show-completion Show completion for the current shell, to copy it or customize the installation.
--help Show this message and exit.

// Try it
Expand All @@ -180,7 +178,7 @@ $ python main.py --network capsule
Usage: main.py [OPTIONS]
Try "main.py --help" for help.

Error: Invalid value for '--network': invalid choice: capsule. (choose from simple, conv, lstm)
Error: Invalid value for '--network': 'capsule' is not one of 'simple', 'conv', 'lstm'.
```

</div>

0 comments on commit 3b9034b

Please sign in to comment.