style: organize imports

This commit is contained in:
jt
2026-07-17 22:07:37 -03:00
parent 726df217ec
commit a08666cac3
6 changed files with 26 additions and 17 deletions
+3 -2
View File
@@ -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: