Skip to content

Commit f595de4

Browse files
authored
Merge branch 'main' into inspect-signature-issue
2 parents 0b18bac + dc6c4cd commit f595de4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

codeflash/code_utils/config_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def parse_config_file(
100100
try:
101101
tool = data["tool"]
102102
assert isinstance(tool, dict)
103-
config = tool.get("codeflash", {})
103+
config = tool["codeflash"]
104104
except tomlkit.exceptions.NonExistentKey as e:
105105
if lsp_mode:
106106
# don't fail in lsp mode if codeflash config is not found.

docs/docs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"primary": {
8181
"type": "button",
8282
"label": "Try Codeflash",
83-
"href": "https://www.codeflash.ai"
83+
"href": "https://app.codeflash.ai/login"
8484
}
8585
},
8686
"contextual": {

0 commit comments

Comments
 (0)