def reset_runtime_preferences()

in __init__.py [0:0]


def reset_runtime_preferences():
    try:
        import bpy

        if __package__ in bpy.context.preferences.addons:
            prefs = bpy.context.preferences.addons[__package__].preferences
            prefs.downloading = False
            prefs.download_progress = 0
    except Exception:
        pass