diff --git a/pyfock/Utils/print_scientist.py b/pyfock/Utils/print_scientist.py index aa05e67..0657cd6 100644 --- a/pyfock/Utils/print_scientist.py +++ b/pyfock/Utils/print_scientist.py @@ -26,7 +26,7 @@ def get_stylish_name(name): - """ + r""" Return ASCII art banner for a scientist's name. Provides pre-generated ASCII art banners for supported scientist names. @@ -55,11 +55,11 @@ def get_stylish_name(name): Supported scientists: dalton, bohr, rutherford, dirac, schrodinger """ banners = { - "dalton": " ____ _ _ \n| _ \ __ _| | |_ ___ _ __ \n| | | |/ _` | | __/ _ \| '_ \ \n| |_| | (_| | | || (_) | | | |\n|____/ \__,_|_|\__\___/|_| |_|", - "bohr": " ____ _ \n| __ ) ___| |__ _ __ \n| _ \ / _ \ '_ \| '__|\n| |_) | (_) | | | | | \n|____/ \___/|_| |_|_| ", - "rutherford": " ____ _ _ __ _ \n| _ \ _ _| |_| |__ ___ _ __ / _| ___ _ __ __| |\n| |_) | | | | __| '_ \ / _ \ '__| |_ / _ \| '__/ _` |\n| _ <| |_| | |_| | | | __/ | | _| (_) | | | (_| |\n|_| \_\\\\__,_|\__|_| |_|\___|_| |_| \___/|_| \__,_|", - "dirac": " ____ _ \n| _ \(_)_ __ __ _ ___ \n| | | | | '__/ _` |/ __| \n| |_| | | | | (_| | (__ \n|____/|_|_| \__,_|\___| ", - "schrodinger": " ____ _ _ _ \n / ___| ___| |__ _ __ ___ __| (_)_ __ __ _ ___ _ __ \n \___ \ / __| '_ \| '__/ _ \ / _` | | '_ \ / _` |/ _ \ '__|\n ___) | (__| | | | | | (_) | (_| | | | | | (_| | __/ | \n |____/ \___|_| |_|_| \___/ \__,_|_|_| |_|\__, |\___|_| \n |___/ ", + "dalton": " ____ _ _ \n| _ \\ __ _| | |_ ___ _ __ \n| | | |/ _` | | __/ _ \\| '_ \\ \n| |_| | (_| | | || (_) | | | |\n|____/ \\__,_|_|\\__\\___/|_| |_|", + "bohr": " ____ _ \n| __ ) ___| |__ _ __ \n| _ \\ / _ \\ '_ \\| '__|\n| |_) | (_) | | | | | \n|____/ \\___/|_| |_|_| ", + "rutherford": " ____ _ _ __ _ \n| _ \\ _ _| |_| |__ ___ _ __ / _| ___ _ __ __| |\n| |_) | | | | __| '_ \\ / _ \\ '__| |_ / _ \\| '__/ _` |\n| _ <| |_| | |_| | | | __/ | | _| (_) | | | (_| |\n|_| \\_\\\\__,_|\\__|_| |_|\\___|_| |_| \\___/|_| \\__,_|", + "dirac": " ____ _ \n| _ \\(_)_ __ __ _ ___ \n| | | | | '__/ _` |/ __| \n| |_| | | | | (_| | (__ \n|____/|_|_| \\__,_|\\___| ", + "schrodinger": " ____ _ _ _ \n / ___| ___| |__ _ __ ___ __| (_)_ __ __ _ ___ _ __ \n \\___ \\ / __| '_ \\| '__/ _ \\ / _` | | '_ \\ / _` |/ _ \\ '__|\n ___) | (__| | | | | | (_) | (_| | | | | | (_| | __/ | \n |____/ \\___|_| |_|_| \\___/ \\__,_|_|_| |_|\\__, |\\___|_| \n |___/ ", } return banners.get(name, name.upper()) @@ -116,7 +116,7 @@ def print_aesthetic_quote(quote, author): def display_scientist_profile(name): - """ + r""" Display complete scientist profile with banner, portrait, and quote. Orchestrates the display of a scientist's profile by: @@ -453,4 +453,4 @@ def print_scientist(): ''', -} \ No newline at end of file +}