How do I reload modules containing functions with annotations in Python? I tried the methods in this thread, but none of them seem to work
@task
def move_to_new_mastery(*args):
#for all students and subtopics, recalculate mastery
logger.info('hi')
return 13
Is there a way to reload modules with functions with annotations or do I need to reload each function individually?