mean-teacher icon indicating copy to clipboard operation
mean-teacher copied to clipboard

question on your code

Open luciaL opened this issue 4 years ago • 0 comments

Hello! There is one function that I don't understand in /mean_teacher/utils.py def export(fn): mod = sys.modules[fn.__module__] if hasattr(mod, '__all__'): mod.__all__.append(fn.__name__) else: mod.__all__ = [fn.__name__] return fn

Look forward for your reply, thank you so much.

luciaL avatar Mar 24 '20 16:03 luciaL