diff --git a/aerich/cli.py b/aerich/cli.py index 60fe949..3d1f08b 100644 --- a/aerich/cli.py +++ b/aerich/cli.py @@ -240,7 +240,9 @@ async def init_db(ctx: Context, safe: bool): click.secho(f"Success create app migrate location {dirname}", fg=Color.green) click.secho(f'Success generate schema for app "{app}"', fg=Color.green) except FileExistsError: - return click.secho(f"Inited {app} already, or delete {dirname} and try again.", fg=Color.yellow) + return click.secho( + f"Inited {app} already, or delete {dirname} and try again.", fg=Color.yellow + ) @cli.command(help="Introspects the database tables to standard output as TortoiseORM model.")