You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello I am having problems when adding how long the meeting will last. As the prompt says, I tried inputting normal minutes, e.g. 20 / 120 / 60 and I get this error Traceback (most recent call last): File "main.py", line 83, in <module> schedule.every().day.at("%s" % meet_time).do(zoomClass) File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/schedule/__init__.py", line 381, in at raise ScheduleValueError('Invalid time format') schedule.ScheduleValueError: Invalid time format
I understand the error is around the time format of the meet_time variable but I don't know how to fix it. I have the required dependencies installed and I made sure to correctly schedule the meeting and add both the meeting ID and password. I don't know what I am doing wrong, any advice around how to fix this issue would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
What did you put for the meeting time, sometimes you have to add a leading zero to any time before 10:00, like if class was at 9:30 then you have to put 09:30.
From what I can see the error is coming from the line where the code is supposed to schedule the joining, so try the leading 0 first.
Edit: also i didnt realise that this is 18 days old sorry
Hello I am having problems when adding how long the meeting will last. As the prompt says, I tried inputting normal minutes, e.g. 20 / 120 / 60 and I get this error
Traceback (most recent call last): File "main.py", line 83, in <module> schedule.every().day.at("%s" % meet_time).do(zoomClass) File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/schedule/__init__.py", line 381, in at raise ScheduleValueError('Invalid time format') schedule.ScheduleValueError: Invalid time format
I understand the error is around the time format of the
meet_time
variable but I don't know how to fix it. I have the required dependencies installed and I made sure to correctly schedule the meeting and add both the meeting ID and password. I don't know what I am doing wrong, any advice around how to fix this issue would be greatly appreciated.The text was updated successfully, but these errors were encountered: