[object Object]

← back to Exo

fix exo text

e7dcdac24cc7b79ff791b5e842b3baaae29842d8 · 2024-07-18 01:06:18 -0700 · Alex Cheema

Files touched

Diff

commit e7dcdac24cc7b79ff791b5e842b3baaae29842d8
Author: Alex Cheema <alexcheema123@gmail.com>
Date:   Thu Jul 18 01:06:18 2024 -0700

    fix exo text
---
 exo/helpers.py | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/exo/helpers.py b/exo/helpers.py
index 0721b843..857da564 100644
--- a/exo/helpers.py
+++ b/exo/helpers.py
@@ -7,22 +7,20 @@ DEBUG_DISCOVERY = int(os.getenv("DEBUG_DISCOVERY", default="0"))
 VERSION = "0.0.1"
 
 exo_text = """
-  _____  _____
- / _ \ \/ / _ \
+  _____  _____  
+ / _ \ \/ / _ \ 
 |  __/>  < (_) |
- \___/_/\_\___/
+ \___/_/\_\___/ 
     """
 
+
 def print_exo():
     print(exo_text)
 
 def print_yellow_exo():
     yellow = "\033[93m"  # ANSI escape code for yellow
     reset = "\033[0m"    # ANSI escape code to reset color
-    exo = f"""{yellow}
-{exo_text}
-{reset}"""
-    print(exo)
+    print(f"{yellow}{exo_text}{reset}")
 
 def terminal_link(uri, label=None):
     if label is None: 

← 17ecf266 typo bullet point  ·  back to Exo  ·  drop exo to 0.0.1 (still experimental) 071b1caa →