Skip to content

Commit

Permalink
this is literally stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
Ann1kaB committed Aug 22, 2020
1 parent 3573b08 commit b3cb582
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions fetch_cord/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,12 @@ def iUnity():
}


shells = {
"fish": "fish",
"zsh": "zsh",
"bash": "bash",
}
shells = [
"fish",
"zsh",
"bash",
"ruby",
]
hosts= {
"inspiron": "743970870631858288",
"latitude": "743970870631858288",
Expand Down Expand Up @@ -239,7 +240,7 @@ def iUnity():


try:
shell = shells[shellid.lower()]
shell = [s for s in shells if shellid in s]
except KeyError:
print("Unsupported Shell, contact us on guthub to resolve this.(Keyerror)")
shell = "unknown"
Expand Down

0 comments on commit b3cb582

Please sign in to comment.