bugfix: arreglo iteracion de items de flowconfig en set_config

This commit is contained in:
Jonathan Teran Carballo
2025-11-28 15:43:46 -03:00
parent 50979e2c3d
commit 5c3a3171fd
+1 -1
View File
@@ -38,7 +38,7 @@ class Git:
@staticmethod @staticmethod
def set_config(config: dict[str, str], file: str | None = None): 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() Git("config", key, value, file=file).exec()
@staticmethod @staticmethod