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 6, 2024
1 parent db416e1 commit 40e2e92
Showing 1 changed file with 1 addition and 3 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 @@ -9,9 +9,7 @@ class Interval(Enum):
OTHER = "o"


def main(
interval: Interval = typer.Option(Interval.OTHER, case_sensitive=True)
):
def main(interval: Interval = typer.Option(Interval.OTHER, case_sensitive=True)):
print(f"Found interval: {interval.value}")


Expand Down

0 comments on commit 40e2e92

Please sign in to comment.