Skip to content

Commit

Permalink
Fix bad default value for list --attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
woefe committed Oct 28, 2021
1 parent 70d8028 commit b14b70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ytcc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def list_videos_impl(


@cli.command("list")
@click.option("--attributes", "-a", type=CommaList(VideoAttr.from_str), default="",
@click.option("--attributes", "-a", type=CommaList(VideoAttr.from_str),
help="Attributes of videos to be included in the output. "
f"Some of [{', '.join(VideoAttr)}].")
@pass_ytcc
Expand Down

0 comments on commit b14b70a

Please sign in to comment.