11308: Fix whitespace
authorTom Clegg <tom@curoverse.com>
Fri, 14 Apr 2017 17:43:10 +0000 (13:43 -0400)
committerTom Clegg <tom@curoverse.com>
Fri, 14 Apr 2017 19:11:51 +0000 (15:11 -0400)
sdk/python/arvados/commands/get.py
sdk/python/tests/test_arv_get.py

index f39e092135aa6234c6318326dd8db654aa84aa04..72d099d06dc2f1000146e7dc67311e5add05763d 100755 (executable)
@@ -125,7 +125,7 @@ def parse_arguments(arguments, stdout, stderr):
 
 def main(arguments=None, stdout=sys.stdout, stderr=sys.stderr):
     global api_client
-    
+
     args = parse_arguments(arguments, stdout, stderr)
     if api_client is None:
         api_client = arvados.api('v1')
index 907c671822b16ed0929f5976c0a0c0ad5f9b6eac..d89231776683cf82c1037bdbc52a79d7916c72b2 100644 (file)
@@ -37,7 +37,7 @@ class ArvadosGetTestCase(run_test_server.TestCaseWithServers):
                 f.write(data)
         c.save_new()
         return (c.manifest_locator(), c.portable_data_hash(), c.manifest_text())
-    
+
     def run_get(self, args):
         self.stdout = io.BytesIO()
         self.stderr = io.BytesIO()
@@ -60,7 +60,7 @@ class ArvadosGetTestCase(run_test_server.TestCaseWithServers):
         # Then, try by PDH
         r = self.run_get(["{}/subdir/baz.txt".format(self.col_pdh), '-'])
         self.assertEqual(0, r)
-        self.assertEqual('baz', self.stdout.getvalue())        
+        self.assertEqual('baz', self.stdout.getvalue())
 
     def test_get_multiple_files(self):
         # Download the entire collection to the temp directory