Skip to content
Snippets Groups Projects
Commit 5e5fb2bd authored by Harry Wyatt's avatar Harry Wyatt
Browse files

Cleaned up some imports in game.py

parent 4b28def4
No related branches found
No related tags found
No related merge requests found
......@@ -11,9 +11,7 @@ from minigame import MiniGame
from minigame_map import game_map, game_info
import random
import os
import random as r
from time import sleep
import time as t
import time
import sys
......@@ -677,7 +675,7 @@ def menu_beg():
def loadingbar():
print("Loading the game...")
for i in range(51):
sleep(r.uniform(0.05, 0.2))
sleep(random.uniform(0.05, 0.2))
bar = ('' * i) + '-' * (50 - i)
print(f'\r[{bar}]', end='')
print()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment