draft: genre is optional

This commit is contained in:
Hazel 2024-06-19 11:05:52 +02:00
parent ed2eeabd6a
commit 240bd105f0

View File

@ -73,5 +73,5 @@ def main():
description=DESCRIPTION,
epilog='This is just a development cli. The real frontend is coming soon.'
)
parser.add_argument('--genre', '-g', action='store_const')
parser.add_argument('--genre', '-g', action='store_const', required=False, help="choose a genre to download from")
args = parser.parse_args()