Skip to content

Commit 27745fb

Browse files
revert
1 parent 0cd4d5e commit 27745fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

codeflash/cli_cmds/cmd_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ def collect_setup_info() -> SetupInfo:
451451
apologize_and_exit()
452452
formatter = formatter_answers["formatter"]
453453

454-
git_remote = "origin"
454+
git_remote = ""
455455
try:
456456
repo = Repo(str(module_root), search_parent_directories=True)
457457
git_remotes = get_git_remotes(repo)

codeflash/lsp/beta.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ def validate_project(server: CodeflashLanguageServer, _params: FunctionOptimizat
149149
server.show_message_log("pyproject.toml is not valid", "Error")
150150
return {
151151
"status": "error",
152-
"message": "pyproject.toml is not valid",
153-
} # keep the error message the same, the extension is matching "pyproject.toml" in the error message to show the codeflash init instructions
152+
"message": "pyproject.toml is not valid", # keep the error message the same, the extension is matching "pyproject.toml" in the error message to show the codeflash init instructions
153+
}
154154

155155
new_args = process_pyproject_config(server.args)
156156
server.args = new_args

0 commit comments

Comments
 (0)