style: organize imports
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
import typer
|
||||
|
||||
import git_flow.command.base as base
|
||||
from git_flow import GitFlowError
|
||||
from git_flow.changelog import Changelog
|
||||
import git_flow.command.base as base
|
||||
from git_flow.git import Git
|
||||
|
||||
app = typer.Typer()
|
||||
@@ -91,7 +92,7 @@ def check_merge_conflicts(target: str):
|
||||
f"La rama actual tiene conflictos con {target}.\n"
|
||||
f"Se recomienda mergear {target} a la rama actual, resolver los conflictos localmente,\n"
|
||||
"y ejecutar nuevamente este comando",
|
||||
title = "Conflictos de merge",
|
||||
title="Conflictos de merge",
|
||||
)
|
||||
raise GitFlowError("Ejecución abortada.")
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user