Skip to content

Commit 17da5cb

Browse files
committed
another ruff format
1 parent df8d253 commit 17da5cb

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

codeflash/cli_cmds/cmd_init.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,6 @@ def customize_codeflash_yaml_content(
558558
return optimize_yml_content.replace("{{ codeflash_command }}", codeflash_cmd)
559559

560560

561-
562561
# Create or update the pyproject.toml file with the Codeflash dependency & configuration
563562
def configure_pyproject_toml(setup_info: SetupInfo) -> None:
564563
toml_path = Path.cwd() / "pyproject.toml"

codeflash/discovery/pytest_new_process_discovery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ def parse_pytest_collection_results(pytest_tests: list[Any]) -> list[dict[str, s
4343
import pickle
4444

4545
with Path(pickle_path).open("wb") as f:
46-
pickle.dump((exitcode, tests, pytest_rootdir), f, protocol=pickle.HIGHEST_PROTOCOL)
46+
pickle.dump((exitcode, tests, pytest_rootdir), f, protocol=pickle.HIGHEST_PROTOCOL)

codeflash/result/explanation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,5 @@ def to_console_string(self) -> str:
4949
+ f"{TestResults.report_to_string(self.winning_behavioral_test_results.get_test_pass_fail_report_by_type())}\n"
5050
)
5151

52-
5352
def explanation_message(self) -> str:
5453
return self.raw_explanation_message

0 commit comments

Comments
 (0)