fix: resolve circular import in updator.py

This commit is contained in:
LIghtJUNction
2026-05-21 19:08:45 +08:00
parent 0b4cf94414
commit 01aafc21dd

View File

@@ -2,11 +2,10 @@ import os
import zipfile
from astrbot.core import logger
from astrbot.core.star.star import StarMetadata
from astrbot.core.utils.astrbot_path import get_astrbot_plugin_path
from astrbot.core.utils.io import ensure_dir, remove_dir
from ..star.star import StarMetadata
from ..updator import RepoZipUpdator
from astrbot.core.zip_updator import RepoZipUpdator
class PluginUpdator(RepoZipUpdator):