Skip to content

Commit 1b19b7b

Browse files
committed
cleanup
Update cmd_init.py
1 parent 7681617 commit 1b19b7b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

codeflash/cli_cmds/cmd_init.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def init_codeflash() -> None:
8282
if "setup_info" in locals():
8383
module_string = f" you selected ({setup_info.module_root})"
8484

85-
logger.info(
85+
console.print(
8686
f"{LF}"
8787
f"⚡️ Codeflash is now set up! You can now run:{LF}"
8888
f" codeflash --file <path-to-file> --function <function-name> to optimize a function within a file{LF}"
@@ -481,7 +481,6 @@ def install_github_actions(override_formatter_check: bool = False) -> None: # n
481481
)
482482
console.rule()
483483
input("Press Enter to continue...")
484-
logger.info("")
485484
logger.info(
486485
f"Please edit, commit and push this GitHub actions file to your repo, and you're all set!{LF}"
487486
f"🚀 Codeflash is now configured to automatically optimize new Github PRs!{LF}"
@@ -659,7 +658,6 @@ def configure_pyproject_toml(setup_info: SetupInfo) -> None:
659658
pyproject_file.write(tomlkit.dumps(pyproject_data))
660659
logger.info(f"✅ Added Codeflash configuration to {toml_path}")
661660
console.rule()
662-
logger.info("")
663661

664662

665663
def install_github_app() -> None:

0 commit comments

Comments
 (0)