Skip to content

Commit

Permalink
🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Mar 11, 2024
1 parent 161706a commit 0efe55c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions docs_src/parameter_types/enum/tutorial003.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ class NeuralNetwork(str, Enum):
lstm_upper = "LSTM"


def main(
network: NeuralNetwork = typer.Option(NeuralNetwork.simple)
):
def main(network: NeuralNetwork = typer.Option(NeuralNetwork.simple)):
print(f"Training neural network of type: {network.value}")


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import subprocess
import sys

import pytest
import typer
from typer.testing import CliRunner

Expand Down

0 comments on commit 0efe55c

Please sign in to comment.