Skip to content

Commit 431ef0a

Browse files
committed
Merge remote-tracking branch 'origin/main' into cf-600
2 parents 8aad3eb + 9e0aa9c commit 431ef0a

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

codeflash/cli_cmds/cmd_init.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,13 @@
3535

3636
CODEFLASH_LOGO: str = (
3737
f"{LF}"
38-
r" █████ ██████ ████ █████ " + f"{LF}"
39-
r" ███ ███ ███ ███ ███ " + f"{LF}"
40-
r" ██████ ██████ ███████ ██████ ███ ███ ██████ █████ ███████ " + f"{LF}"
41-
r" ███ ███ ███ ███ ███ ███ ███ ███ ███████ ███ ███ ███ ███ ███ " + f"{LF}"
42-
r" ███ ███ ███ ███ ███ ███████ ███ ███ ███████ █████ ███ ███ " + f"{LF}"
43-
r" ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ " + f"{LF}"
44-
r" ██████ ██████ ████████ ██████ █████ █████ ████████ ██████ ████ █████" + f"{LF}"
45-
f"{('v' + version).rjust(96)}{LF}"
38+
r" _ ___ _ _ " + f"{LF}"
39+
r" | | / __)| | | | " + f"{LF}"
40+
r" ____ ___ _ | | ____ | |__ | | ____ ___ | | _ " + f"{LF}"
41+
r" / ___) / _ \ / || | / _ )| __)| | / _ | /___)| || \ " + f"{LF}"
42+
r"( (___ | |_| |( (_| |( (/ / | | | |( ( | ||___ || | | |" + f"{LF}"
43+
r" \____) \___/ \____| \____)|_| |_| \_||_|(___/ |_| |_|" + f"{LF}"
44+
f"{('v' + version).rjust(66)}{LF}"
4645
f"{LF}"
4746
)
4847

codeflash/code_utils/github_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def require_github_app_or_exit(owner: str, repo: str) -> None:
2020
f"It looks like the Codeflash GitHub App is not installed on the repository {owner}/{repo} or the GitHub"
2121
f" account linked to your CODEFLASH_API_KEY does not have access to the repository {owner}/{repo}.{LF}"
2222
"Before continuing, please install the Codeflash GitHub App on your repository by visiting "
23-
f"https://github.com/apps/codeflash-ai{LF}"
23+
f"https://github.com/apps/codeflash-ai/installations/select_target{LF}"
2424
)
2525
logger.error(
2626
f"Note: if you want to find optimizations without opening PRs, you can run Codeflash with the --no-pr flag.{LF}"

0 commit comments

Comments
 (0)