Skip to content

Commit

Permalink
Add small fixes (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgesLorre authored Feb 1, 2024
1 parent c009879 commit 1cfb13e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/guides/build_a_simple_pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
4 changes: 2 additions & 2 deletions src/fondant/pipeline/lightweight_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down

0 comments on commit 1cfb13e

Please sign in to comment.