Repository: incubator-beam Updated Branches: refs/heads/python-sdk c1440f7aa -> 8e88c7b03
Fixing lynt warnings related to indentation. Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/6aa50c1d Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/6aa50c1d Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/6aa50c1d Branch: refs/heads/python-sdk Commit: 6aa50c1d5249ac70c37196a9957874aaf26dd54d Parents: 9f9c986 Author: Gus Katsiapis <[email protected]> Authored: Sun Nov 20 12:33:16 2016 -0800 Committer: Luke Cwik <[email protected]> Committed: Mon Nov 21 11:29:07 2016 -0800 ---------------------------------------------------------------------- sdks/python/apache_beam/io/fileio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/6aa50c1d/sdks/python/apache_beam/io/fileio.py ---------------------------------------------------------------------- diff --git a/sdks/python/apache_beam/io/fileio.py b/sdks/python/apache_beam/io/fileio.py index cb7f25c..30044c3 100644 --- a/sdks/python/apache_beam/io/fileio.py +++ b/sdks/python/apache_beam/io/fileio.py @@ -866,7 +866,7 @@ class FileSink(iobase.Sink): # (possibly unsharded) file_path_prefix and a (possibly empty) # file_name_suffix. suffix = ( - '.' + os.path.basename(self.file_path_prefix) + self.file_name_suffix) + '.' + os.path.basename(self.file_path_prefix) + self.file_name_suffix) return FileSinkWriter(self, os.path.join(init_result, uid) + suffix) def finalize_write(self, init_result, writer_results):
