Clean query. (#4259)

### What problem does this PR solve?

#4239

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Kevin Hu
2024-12-27 14:25:03 +08:00
committed by GitHub
parent c3e3f0fbb4
commit f948c0d9f1
2 changed files with 8 additions and 4 deletions

View File

@ -36,12 +36,12 @@ from .iteration import Iteration, IterationParam
from .iterationitem import IterationItem, IterationItemParam
def component_class(class_name):
m = importlib.import_module("agent.component")
c = getattr(m, class_name)
return c
__all__ = [
"Begin",
"BeginParam",