From d54b13e80a00393dff8d315069a2e64d0671486f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 25 Jan 2025 08:38:28 -0800 Subject: [PATCH] style: Format code with consistent string quotes --- aider/models.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aider/models.py b/aider/models.py index 5e1595dc1..915d0a632 100644 --- a/aider/models.py +++ b/aider/models.py @@ -1424,11 +1424,10 @@ def get_model_settings_as_yaml(): # Filter out None values before dumping yaml_str = yaml.dump( - [ms for ms in model_settings_list if ms is not None], - default_flow_style=False + [ms for ms in model_settings_list if ms is not None], default_flow_style=False ) # Add actual blank lines between entries - return yaml_str.replace('\n- ', '\n\n- ') + return yaml_str.replace("\n- ", "\n\n- ") def main():