Skip to content

Commit 68e40aa

Browse files
style: auto-fix ruff formatting in config_parser.py
1 parent 9c50bc1 commit 68e40aa

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

codeflash/code_utils/config_parser.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,7 @@ def find_all_config_files(start_dir: Path | None = None) -> list[LanguageConfig]
181181
raw_config = dict(tool["codeflash"])
182182
normalized = normalize_toml_config(raw_config, config_file)
183183
seen_languages.add(language)
184-
configs.append(
185-
LanguageConfig(config=normalized, config_path=config_file, language=language)
186-
)
184+
configs.append(LanguageConfig(config=normalized, config_path=config_file, language=language))
187185
except Exception:
188186
continue
189187

0 commit comments

Comments
 (0)