bugfix: descartar output cuando el comando git se ejecuta con _run

This commit is contained in:
jt
2025-11-22 11:28:51 -03:00
parent 7346cfd1a8
commit d133c480c5
+1 -1
View File
@@ -144,7 +144,7 @@ class Git:
def _run(self, print: bool = False, check: bool = True): def _run(self, print: bool = False, check: bool = True):
process = subprocess.run(self.command) process = subprocess.run(self.command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
if print: if print:
self._print_process("", "") self._print_process("", "")