I have the below code snippet that runs every 3 hours from when the script starts which is great, I'm wondering if there is a way to specify it to run every 3 hours at the top of the hour for example 00:00, 03:00, 06:00, 09:00 etc.?
schedule.every(3).hours.do(self.run_report)
I'm trying to be able to consistently say the report will generate every 3 hours at these times instead of it'll run 3 hours after the last run.