Skip to content

Commit 2d49329

Browse files
authored
Merge pull request Python-World#461 from pachecodt/master
[FIX] Time error
2 parents 22bbd73 + 86077ce commit 2d49329

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

projects/whatsapp_Bot/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
chour = now.strftime("%H")
77
mobile = input('Enter Mobile No of Receiver : ')
88
message = input('Enter Message you wanna send : ')
9-
hour = int(chour) + int(input('Enter hour : '))
9+
hour = int(input('Enter hour : '))
1010
minute = int(input('Enter minute : '))
1111

1212
pywhatkit.sendwhatmsg(mobile,message,hour,minute)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pywhatkit

0 commit comments

Comments
 (0)