Skip to content

Commit

Permalink
Create synapse_ascii.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lamoboos223 authored Jan 8, 2025
1 parent e01b1c8 commit 800e050
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions synapse/util/synapse_ascii.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
SYNAPSE_LOGO = '''

Check failure on line 1 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W291)

synapse/util/synapse_ascii.py:1:19: W291 Trailing whitespace
____

Check failure on line 2 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W291)

synapse/util/synapse_ascii.py:2:7: W291 Trailing whitespace
/ ___| _ _ _ __ __ _ _ __ ___ ___

Check failure on line 3 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W291)

synapse/util/synapse_ascii.py:3:41: W291 Trailing whitespace
\___ \| | | | '_ \ / _` | '_ \/ __|/ _ \\

Check failure on line 4 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W605)

synapse/util/synapse_ascii.py:4:2: W605 Invalid escape sequence: `\_`

Check failure on line 4 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W605)

synapse/util/synapse_ascii.py:4:7: W605 Invalid escape sequence: `\|`

Check failure on line 4 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W605)

synapse/util/synapse_ascii.py:4:19: W605 Invalid escape sequence: `\ `

Check failure on line 4 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W605)

synapse/util/synapse_ascii.py:4:31: W605 Invalid escape sequence: `\/`
___) | |_| | | | | (_| | |_) \__ \ __/

Check failure on line 5 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W605)

synapse/util/synapse_ascii.py:5:32: W605 Invalid escape sequence: `\_`

Check failure on line 5 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W605)

synapse/util/synapse_ascii.py:5:36: W605 Invalid escape sequence: `\ `
|____/ \__, |_| |_|\__,_| .__/|___/\___|

Check failure on line 6 in synapse/util/synapse_ascii.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (W605)

synapse/util/synapse_ascii.py:6:9: W605 Invalid escape sequence: `\_`
|___/ |_|
'''

def get_logo(version: str) -> str:
"""Returns the Synapse ASCII art logo."""
return SYNAPSE_LOGO + "\t\t\t\t\t\t" + version + "\n"

0 comments on commit 800e050

Please sign in to comment.