Skip to content

Commit 717e8f9

Browse files
committed
Update
1 parent 00833df commit 717e8f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Panim.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ def background(color):
2727
def gotoxy(x,y):
2828
print("\033[",y,";",x,"H",sep='',end='',flush=True)
2929

30-
def sleep(sec):
31-
time.sleep(sec)
30+
def sleep(n):
31+
time.sleep(n)
3232

33-
def wait(prompt = True):
33+
def wait(echo = True):
3434
if(prompt):
3535
input("\nPress Enter to Continue")
3636
else:

0 commit comments

Comments
 (0)