Skip to content

Commit 1fb06ec

Browse files
clean up changes
1 parent f820ade commit 1fb06ec

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

codeflash/cli_cmds/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ def process_pyproject_config(args: Namespace) -> Namespace:
155155
"disable_telemetry",
156156
"disable_imports_sorting",
157157
"git_remote",
158-
"exp_git_remote",
159158
"override_fixtures",
160159
]
161160
for key in supported_keys:

codeflash/code_utils/config_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def parse_config_file(
7070
# default values:
7171
path_keys = ["module-root", "tests-root", "benchmarks-root"]
7272
path_list_keys = ["ignore-paths"]
73-
str_keys = {"pytest-cmd": "pytest", "git-remote": "origin", "exp-git-remote": "exp-origin"}
73+
str_keys = {"pytest-cmd": "pytest", "git-remote": "origin"}
7474
bool_keys = {
7575
"override-fixtures": False,
7676
"disable-telemetry": False,

codeflash/optimization/function_optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,7 @@ def find_and_process_best_optimization(
10411041
if self.experiment_id
10421042
else self.function_trace_id,
10431043
coverage_message=coverage_message,
1044-
git_remote=self.args.git_remote if exp_type == "EXP0" else self.args.exp_git_remote,
1044+
git_remote=self.args.git_remote,
10451045
)
10461046
if (
10471047
self.args.all

0 commit comments

Comments
 (0)