1
0
mirror of https://github.com/ycd/manage-fastapi.git synced 2021-11-08 01:34:39 +03:00

✏️ Remove potato from interact command

This commit is contained in:
Marcelo Trylesinski
2020-11-25 02:01:17 +01:00
parent 9f2a0bc6b5
commit a4452d6ab3

View File

@@ -16,7 +16,7 @@ app = typer.Typer(help="Managing FastAPI projects made easy!", name="Manage Fast
@app.command(help="Creates a FastAPI project.")
def startproject(
name: str,
interact: bool = typer.Option(False, "--potato", is_flag=True),
interact: bool = typer.Option(False),
database: Optional[Database] = typer.Option(None),
docker: bool = typer.Option(False),
license_: Optional[License] = typer.Option(None, "--license", case_sensitive=False),