There was an error while loading. Please reload this page.
1 parent 9c456cc commit dc6c4cdCopy full SHA for dc6c4cd
codeflash/code_utils/config_parser.py
@@ -100,7 +100,7 @@ def parse_config_file(
100
try:
101
tool = data["tool"]
102
assert isinstance(tool, dict)
103
- config = tool.get("codeflash", {})
+ config = tool["codeflash"]
104
except tomlkit.exceptions.NonExistentKey as e:
105
if lsp_mode:
106
# don't fail in lsp mode if codeflash config is not found.
0 commit comments