diff --git a/docs/guides/build_a_simple_pipeline.md b/docs/guides/build_a_simple_pipeline.md index 55850a3d..c1cc2c2d 100644 --- a/docs/guides/build_a_simple_pipeline.md +++ b/docs/guides/build_a_simple_pipeline.md @@ -83,7 +83,7 @@ dataset = pipeline.read( }, produces={ "alt_text": pa.string(), - "url": pa.string(), + "image_url": pa.string(), "license_location": pa.string(), "license_type": pa.string(), "webpage_url": pa.string(), diff --git a/src/fondant/pipeline/lightweight_component.py b/src/fondant/pipeline/lightweight_component.py index acd3816b..277c42e5 100644 --- a/src/fondant/pipeline/lightweight_component.py +++ b/src/fondant/pipeline/lightweight_component.py @@ -126,8 +126,8 @@ def get_spec_consumes( logger.warning( "No consumes defined. Consumes will be inferred from the dataset." - "All field will be consumed which may lead to additional computation," - "Consider defining consumes in the component.\n Consumes: %s", + " All field will be consumed which may lead to additional computation," + " Consider defining consumes in the component.\n Consumes: %s", spec_consumes, )