From ecbe4781881270d54c02e3d73452a288049fdbcf Mon Sep 17 00:00:00 2001 From: Filip Lajszczak Date: Fri, 18 Dec 2020 19:55:53 +0000 Subject: [PATCH] #5 fixes autoconfigure django help strings as defaults are autogenerated --- cli/django.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/django.py b/cli/django.py index 91705bd..0a59f79 100644 --- a/cli/django.py +++ b/cli/django.py @@ -11,18 +11,18 @@ @app.command() def autoconfigure( - repo_url: str, + repo_url: str = typer.Argument(..., help="url of remote git repository of your django project"), domain_name: str = typer.Option( "your-username.pythonanywhere.com", "-d", "--domain", - help="Domain name, eg www.mydomain.com [default: your-username.pythonanywhere.com]", + help="Domain name, eg www.mydomain.com", ), python_version: str = typer.Option( "3.6", "-p", "--python-version", - help="Python version, eg '3.8' [default: 3.6]", + help="Python version, eg '3.8'", ), nuke: bool = typer.Option( False,