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 Sep 12, 2024
1 parent 9ad26c2 commit 6ae6c9b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ class SuperHero(str, Enum):
def main(
names: Annotated[
Tuple[str, str, str, SuperHero],
typer.Argument(enum_by_name=True, help="Select 4 characters to play with", case_sensitive=False),
typer.Argument(
enum_by_name=True,
help="Select 4 characters to play with",
case_sensitive=False,
),
] = ("Harry", "Hermione", "Ron", "hero3"),
):
for name in names:
Expand Down

0 comments on commit 6ae6c9b

Please sign in to comment.