This is an automated email from the ASF dual-hosted git repository.
altay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 368e28c Removed unused arg from ToString.Element
new e06ef8e Merge pull request #9437 from aaltay/ts
368e28c is described below
commit 368e28c64f0dbf8914e6d43f111d3568e917f631
Author: Ahmet Altay <[email protected]>
AuthorDate: Mon Aug 26 19:13:53 2019 -0700
Removed unused arg from ToString.Element
---
sdks/python/apache_beam/transforms/util.py | 3 ---
1 file changed, 3 deletions(-)
diff --git a/sdks/python/apache_beam/transforms/util.py
b/sdks/python/apache_beam/transforms/util.py
index c2866d6..690ee3d 100644
--- a/sdks/python/apache_beam/transforms/util.py
+++ b/sdks/python/apache_beam/transforms/util.py
@@ -778,9 +778,6 @@ class ToString(object):
Transforms each element of the PCollection to a string.
"""
- def __init__(self, delimiter=None):
- self.delimiter = delimiter or ","
-
def expand(self, pcoll):
input_type = T
output_type = str