Revert auto-generated files
Signed-off-by: Bailey Kasin <baileykasin@gmail.com>
This commit is contained in:
parent
c2a26cf0ae
commit
07da5d5f4b
4 changed files with 17 additions and 38 deletions
|
@ -9,8 +9,8 @@ def detect(name: str) -> AsciiArt | None:
|
|||
return None
|
||||
name = name.lower()
|
||||
if name.startswith('adélie') or name.startswith('adelie'):
|
||||
from .adélie import adélie
|
||||
return adélie
|
||||
from .adelie import adelie
|
||||
return adelie
|
||||
|
||||
if name.startswith('aix'):
|
||||
from .aix import aix
|
||||
|
@ -123,10 +123,6 @@ def detect(name: str) -> AsciiArt | None:
|
|||
if name.startswith('arcolinux'):
|
||||
from .arcolinux import arcolinux
|
||||
return arcolinux
|
||||
|
||||
if name.startswith('furreto'):
|
||||
from .furreto import furreto
|
||||
return furreto
|
||||
|
||||
if name == 'arch_small':
|
||||
from .arch_small import arch_small
|
||||
|
@ -308,6 +304,10 @@ def detect(name: str) -> AsciiArt | None:
|
|||
from .chapeau import chapeau
|
||||
return chapeau
|
||||
|
||||
if name.startswith('chimera'):
|
||||
from .chimera import chimera
|
||||
return chimera
|
||||
|
||||
if name.startswith('chonkysealos'):
|
||||
from .chonkysealos import chonkysealos
|
||||
return chonkysealos
|
||||
|
@ -480,6 +480,10 @@ def detect(name: str) -> AsciiArt | None:
|
|||
from .evolutionos import evolutionos
|
||||
return evolutionos
|
||||
|
||||
if name.startswith('eweos'):
|
||||
from .eweos import eweos
|
||||
return eweos
|
||||
|
||||
if name.startswith('exherbo'):
|
||||
from .exherbo import exherbo
|
||||
return exherbo
|
||||
|
@ -1476,6 +1480,10 @@ def detect(name: str) -> AsciiArt | None:
|
|||
from .xenia import xenia
|
||||
return xenia
|
||||
|
||||
if name.startswith('tatra'):
|
||||
from .tatra import tatra
|
||||
return tatra
|
||||
|
||||
if name.startswith('zorin'):
|
||||
from .zorin import zorin
|
||||
return zorin
|
||||
|
@ -1503,4 +1511,4 @@ def detect(name: str) -> AsciiArt | None:
|
|||
if name == 'sunos':
|
||||
from .sunos import sunos
|
||||
return sunos
|
||||
|
||||
|
|
@ -24,3 +24,4 @@ MMMMMMMMMMMN0ocxXWNkl:,:xXWMMMMMMMMMMMMM
|
|||
MMMMMMMMMMMMMWNWMMMWWNNNWMMMMMMMMMMMMMMM
|
||||
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
|
||||
""")
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
furreto = AsciiArt(match=r'''"furreto"*''', color='211 255 225 199', ascii=r"""
|
||||
${c1}
|
||||
${c1}.xOOko .odd,
|
||||
o${c3}X${c2}WWK${c3}O${c1}OOO. 'O${c3}N${c2}WW${c3}0${c1}kkk.
|
||||
.k0${c3}XKO${c1}OOOOOcOO${c2}NWN${c1}OOOOO.
|
||||
xOOOOOOOOOkkOOOOOOOOO;
|
||||
.O0OkkocxO000000kcdk0OO0OOkx
|
||||
k${c3}W${c2}MX${c1}kkkkloxkkkx; :dxxxxddc...
|
||||
'kO0OOOOOkc .cl:..kk0KK0Okc
|
||||
;kOOO0000xd. dO00000Oo .xkO${c3}N${c2}MM${c3}X${c1}OOOO
|
||||
.dddxkOOOkddc.k${c3}K${c2}NWW${c3}N${c1}000000l.ddk${c2}00${c1}00OOOO.
|
||||
'dd:;ddddd;.d${c3}K${c2}MMM${c3}W${c1}K00KKK0O::ddxkO00Oko
|
||||
.okxkOKK0kkOO00KKOxxlodddddddl
|
||||
.00OOkkkkkkkkOOO00OOOO0O; .dddl
|
||||
'kkkkkxxkkkkkkkOOkxdxkxxddd.
|
||||
cddddddddxxkkkkk${c4}xddddddddddo
|
||||
'ddddddodddddddddddddddddddc
|
||||
.ddddddodddddddddodddddddc
|
||||
.odddo.
|
||||
|
||||
.kOOkkk;
|
||||
lkKWNkkkxc
|
||||
kkxkkkkkkx.
|
||||
,,..xxx.
|
||||
|
||||
""")
|
||||
|
|
@ -16,3 +16,4 @@ ${c3}######${c2}#${c1}#######${c2}#${c3}######
|
|||
${c3}#######${c2}#${c1}#####${c2}#${c3}#######
|
||||
${c3} #####${c2}#######${c3}#####
|
||||
""")
|
||||
|
Loading…
Reference in a new issue