bugfix: arreglo iteracion de items de flowconfig en set_config
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user