From 9ae339f1aab32d8473f366c7aaa25633a5a49008 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Wed, 4 Feb 2015 13:56:45 -0500 Subject: [PATCH] 5011: Convert comment to docstring. --- sdk/python/arvados/collection.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/sdk/python/arvados/collection.py b/sdk/python/arvados/collection.py index f56af6ea41..18e9e63da6 100644 --- a/sdk/python/arvados/collection.py +++ b/sdk/python/arvados/collection.py @@ -558,12 +558,14 @@ class CollectionWriter(CollectionBase): self._current_file_name = None def finish(self): - # Store the manifest in Keep and return its locator. Beware, - # this is only useful in special cases like storing manifest - # fragments temporarily in Keep during a Crunch job. In most - # cases you should make a collection instead, by sending - # manifest_text() to the API server's "create collection" - # endpoint. + """Store the manifest in Keep and return its locator. + + Beware, this is only useful in special cases like storing + manifest fragments temporarily in Keep during a Crunch job. In + most cases you should make a collection instead, by sending + manifest_text() to the API server's "create collection" + endpoint. + """ return self._my_keep().put(self.manifest_text(), copies=self.replication) def portable_data_hash(self): -- 2.30.2