Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jkminder authored Jun 14, 2024
1 parent 204b81a commit e2ba000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e2ba000

Please sign in to comment.