Vernadskii
Vernadskii
It's better to add, user can make desicion yourself
Oh, i have [find it](https://community.plotly.com/t/dash-timepicker/6541)! But unfortunately you should update [this page](https://dash.plotly.com/dash-core-components/input) and add type 'time' in documentations
Or i think one of the possible solution may be some think like this sample code: ``` if __name__ == "__main__": job = schedule.every().day.at("00:00").do(start_logging()) while True: jobs = schedule.get_running_jobs() #...
[There is no way](https://stackoverflow.com/questions/55647753/call-async-function-from-sync-function-while-the-synchronous-function-continues) to run async functions in sync function. As I see your decorators type on default is sync. I guess it's not compatible at all :c