fix(agent-runner): clean plugin review issues

This commit is contained in:
huanghuoguoguo
2026-06-06 14:34:40 +08:00
committed by huanghuoguoguo
parent dbefd3364e
commit 5a66ce2340
18 changed files with 71 additions and 73 deletions
+3 -3
View File
@@ -5,10 +5,10 @@ import typing
def import_modules_in_pkg(pkg: typing.Any) -> None:
"""
导入一个包内的所有模块
"""Import all Python modules inside a package.
Args:
pkg: 要导入的包对象
pkg: Package object to import from.
"""
pkg_path = os.path.dirname(pkg.__file__)
import_dir(pkg_path)