Skip to content

Commit 5eb5d0e

Browse files
committed
Change Banner Text to lower case
1 parent 33e64e7 commit 5eb5d0e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

codeflash/cli_cmds/cmd_init.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@
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-
f"{('v' + version).rjust(76)}{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}"
4546
f"{LF}"
4647
)
4748

48-
4949
@dataclass(frozen=True)
5050
class SetupInfo:
5151
module_root: str

0 commit comments

Comments
 (0)