From 5c3a3171fde5a54704dc3e7b83b0b9c12c550cbd Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Fri, 28 Nov 2025 15:43:46 -0300 Subject: [PATCH] bugfix: arreglo iteracion de items de flowconfig en set_config --- 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 d3392a7..11e23ff 100644 --- a/src/git_flow/git.py +++ b/src/git_flow/git.py @@ -38,7 +38,7 @@ class Git: @staticmethod def set_config(config: dict[str, str], file: str | None = None): - for key, value in config: + for key, value in config.items(): Git("config", key, value, file=file).exec() @staticmethod