Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg committed Jun 3, 2024
1 parent 89b87fe commit d4cd3c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs_src/parameter_types/enum/tutorial004_an.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def main(
network: Annotated[Literal["simple", "conv", "lstm"], typer.Option()] = "simple",
):
print(f"Training neural network of type: {network.value}")
print(f"Training neural network of type: {network}")


if __name__ == "__main__":
Expand Down

0 comments on commit d4cd3c3

Please sign in to comment.