From c35c99ec0d8dfb524cd4c568173ab50fce238fc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adeodato=20Sim=C3=B3?= <73768+dato@users.noreply.github.com> Date: Sun, 6 Oct 2024 00:36:09 +0200 Subject: [PATCH] fixup! Moss: borrar self._dest en el index --- algorw/corrector/corrector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorw/corrector/corrector.py b/algorw/corrector/corrector.py index de9d1e1..7778302 100755 --- a/algorw/corrector/corrector.py +++ b/algorw/corrector/corrector.py @@ -271,8 +271,8 @@ def __init__(self, dest: pathlib.Path): self._dest = dest self._emoji: Optional[str] = None shutil.rmtree(self._dest, ignore_errors=True) - self._git(["rm", "--cached", self._dest]) self._dest.mkdir(parents=True) + self._git(["rm", "--cached", self._dest]) def location(self): """Directorio donde se guardaron los archivos."""