We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c50bc1 commit 68e40aaCopy full SHA for 68e40aa
1 file changed
codeflash/code_utils/config_parser.py
@@ -181,9 +181,7 @@ def find_all_config_files(start_dir: Path | None = None) -> list[LanguageConfig]
181
raw_config = dict(tool["codeflash"])
182
normalized = normalize_toml_config(raw_config, config_file)
183
seen_languages.add(language)
184
- configs.append(
185
- LanguageConfig(config=normalized, config_path=config_file, language=language)
186
- )
+ configs.append(LanguageConfig(config=normalized, config_path=config_file, language=language))
187
except Exception:
188
continue
189
0 commit comments