diff --git a/README.md b/README.md index 59ca5c1..77b32cd 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ iris_iterator = PandasDataFrameIterator(iris, "Flower") # register a custom data processing function @register_attribute_postprocessor def append(attribute, append_string): - new_attribute = Attribute(attribute.key, attribute.value + append_string) + new_attribute = Attribute(attribute.key, str(attribute.value) + append_string) return new_attribute # Create IteratorIterator