Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.

Commit 86077ce

Browse files
committed
[FIX] Time error
Fix error: Invalid Time Format
1 parent 806f49c commit 86077ce

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)