Skip to content

Commit 17fbf76

Browse files
Fix typo in warning message
1 parent 1913196 commit 17fbf76

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

gradio/examples.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,10 @@ def __init__(
195195
!= self.inputs_with_examples
196196
):
197197
warnings.warn(
198-
"Examples are being cached but not all input components have"
198+
"Examples are being cached but not all input components have "
199199
"example values. This may result in an exception being thrown by "
200-
"your function."
200+
"your function. If you do get an error while caching examples, make "
201+
"sure all of your inputs have example values for all of your examples."
201202
)
202203
break
203204

0 commit comments

Comments
 (0)