We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97712c0 + 6eb6679 commit 99441fdCopy full SHA for 99441fd
tools/addons/logo.py
@@ -1,14 +1,10 @@
1
# Import modules
2
from colorama import Fore
3
+from colorama import init
4
+from termcolor import cprint
5
+from pyfiglet import figlet_format
6
7
# Logo
-print(
- rf"""{Fore.MAGENTA}
- _____ _
8
- \_ \_ __ ___ _ __ _ _| |___ ___
9
- / /\/ '_ ` _ \| '_ \| | | | / __|/ _ \
10
-/\/ /_ | | | | | | |_) | |_| | \__ \ __/
11
-\____/ |_| |_| |_| .__/ \__,_|_|___/\___|
12
- |_| Created by LimerBoy
13
-{Fore.RESET}"""
14
-)
+cprint('--------------------------------------------', 'red')
+cprint(figlet_format('Impulse', font='standard'), 'red', attrs=['bold'])
0 commit comments