标签: python
如何在Python中重新加载包含带注释的函数的模块?我尝试了this thread中的方法,但它们似乎都不起作用
@task def move_to_new_mastery(*args): #for all students and subtopics, recalculate mastery logger.info('hi') return 13
有没有办法用带注释的函数重新加载模块,还是需要单独重新加载每个函数?