in python, i want to run app Scheduler one time in a minute but i run 2 time in a minute how can i solve it in
def say_hello():
print("hi")
scheduler = BackgroundScheduler()
scheduler.add_job(func=say_hello, trigger="interval", minutes=1)
scheduler.start()