refactor: Remove warnings and update build_component function in loading.py

This commit is contained in:
ogabrielluiz 2024-06-17 16:33:04 -03:00
commit d6468e4283

View file

@ -123,9 +123,7 @@ async def build_component(
):
# Now set the params as attributes of the custom_component
custom_component.set_attributes(params)
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=PydanticDeprecatedSince20)
build_results, artifacts = await custom_component.build_results(vertex)
build_results, artifacts = await custom_component.build_results(vertex)
return custom_component, build_results, artifacts