From f9023cb2876871d89523947c15766d0ed8006458 Mon Sep 17 00:00:00 2001 From: ryansurf Date: Fri, 24 May 2024 00:10:28 -0700 Subject: [PATCH] art format --- src/art.py | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/art.py b/src/art.py index 627814c..aca6a54 100644 --- a/src/art.py +++ b/src/art.py @@ -2,7 +2,7 @@ All ASCII art in this file """ -#ASCII text colors +# ASCII text colors colors = { "end": "\033[0m", "default": "\033[39m", @@ -12,26 +12,32 @@ "blue": "\033[0;34m", "purple": "\033[0;35m", "teal": "\033[0;36m", - "light_blue": "\033[0;34m" + "light_blue": "\033[0;34m", } + def print_wave(show_wave, show_large_wave, color): """ Prints Wave """ if color is not None and color.lower() not in colors: print("Not a valid color") - color = 'blue' + color = "blue" if int(show_wave) == 1: - - print(colors[color] + """ + print( + colors[color] + + """ .-``'. .` .` _.-' '._ - """ + colors['end']) + """ + + colors["end"] + ) if int(show_large_wave) == 1: - print(colors[color] + """ + print( + colors[color] + + """ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⣶⠾⠿⠿⠯⣷⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⣾⠛⠁⠀⠀⠀⠀⠀⠀⠈⢻⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⠿⠁⠀⠀⠀⢀⣤⣾⣟⣛⣛⣶⣬⣿⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ @@ -41,4 +47,6 @@ def print_wave(show_wave, show_large_wave, color): ⠀⠀⠀⠀⠀⣠⣼⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠷⣤⣤⣠⣤⣤⡤⡶⣶⢿⠟⠹⠿⠄⣿⣿⠏⠀⣀⣤⡦⠀⠀⠀⠀⣀⡄ ⢀⣄⣠⣶⣿⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠓⠚⠋⠉⠀⠀⠀⠀⠀⠀⠈⠛⡛⡻⠿⠿⠙⠓⢒⣺⡿⠋⠁ ⠉⠉⠉⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠁⠀ -""" + colors['end']) +""" + + colors["end"] + )