From d133c480c5aefa3310be7c5dbce2ef439b2ee15d Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sat, 22 Nov 2025 11:28:51 -0300 Subject: [PATCH] bugfix: descartar output cuando el comando git se ejecuta con _run --- src/git_flow/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git_flow/git.py b/src/git_flow/git.py index 5ca7b0d..b5d9e7c 100644 --- a/src/git_flow/git.py +++ b/src/git_flow/git.py @@ -144,7 +144,7 @@ class Git: 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: self._print_process("", "")