Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
minor changes...
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispetrou committed Oct 8, 2019
1 parent 1ba42fa commit e98d978
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,15 @@

c1, c2, waiting = 0, 0, True
progress = {
0 : ['⚀', '⚁', '⚂', '⚃', '⚄', '⚅'],
1 : ['|', '/', '-', '\\'],
2 : ['◥', '◢', '◣', '◤'],
3 : ['⊢', '⊤', '⊣', '⊥'],
4 : ['⊔', '⊏', '⊓', '⊐'],
5 : ['◎', '◉', '●'],
6 : ['⨁', '⨂'],
7 : ['❐', '❏']
0 : ['▁', '▂', '▃', '▄', '▅', '▆', '█', '▆', '▅', '▄', '▃', '▂'],
1 : ['⚀', '⚁', '⚂', '⚃', '⚄', '⚅'],
2 : ['|', '/', '-', '\\'],
3 : ['◥', '◢', '◣', '◤'],
4 : ['⊢', '⊤', '⊣', '⊥'],
5 : ['⊔', '⊏', '⊓', '⊐'],
6 : ['◎', '◉', '●'],
7 : ['⨁', '⨂'],
8 : ['❐', '❏']
}

log = logging.getLogger('werkzeug')
Expand Down Expand Up @@ -359,7 +360,7 @@ def stop_loading():

def loading():
print('')
prog = progress[randint(0, 7)]
prog = progress[randint(0, 8)]
while waiting==True:
rotate(prog)

Expand Down

0 comments on commit e98d978

Please sign in to comment.