diff hgext/largefiles/localstore.py @ 43076:2372284d9457

formatting: blacken the codebase This is using my patch to black (https://github.com/psf/black/pull/826) so we don't un-wrap collection literals. Done with: hg files 'set:**.py - mercurial/thirdparty/** - "contrib/python-zstandard/**"' | xargs black -S # skip-blame mass-reformatting only # no-check-commit reformats foo_bar functions Differential Revision: https://phab.mercurial-scm.org/D6971
author Augie Fackler <augie@google.com>
date Sun, 06 Oct 2019 09:45:02 -0400
parents 736f92c44656
children 687b865b95ad
line wrap: on
line diff
--- a/hgext/largefiles/localstore.py	Sat Oct 05 10:29:34 2019 -0400
+++ b/hgext/largefiles/localstore.py	Sun Oct 06 09:45:02 2019 -0400
@@ -17,6 +17,7 @@
     lfutil,
 )
 
+
 class localstore(basestore.basestore):
     '''localstore first attempts to grab files out of the store in the remote
     Mercurial repository.  Failing that, it attempts to grab the files from
@@ -40,11 +41,11 @@
     def _getfile(self, tmpfile, filename, hash):
         path = lfutil.findfile(self.remote, hash)
         if not path:
-            raise basestore.StoreError(filename, hash, self.url,
-                _("can't get file locally"))
+            raise basestore.StoreError(
+                filename, hash, self.url, _("can't get file locally")
+            )
         with open(path, 'rb') as fd:
-            return lfutil.copyandhash(
-                util.filechunkiter(fd), tmpfile)
+            return lfutil.copyandhash(util.filechunkiter(fd), tmpfile)
 
     def _verifyfiles(self, contents, filestocheck):
         failed = False
@@ -52,17 +53,20 @@
             storepath, exists = lfutil.findstorepath(self.repo, expectedhash)
             if not exists:
                 storepath, exists = lfutil.findstorepath(
-                    self.remote, expectedhash)
+                    self.remote, expectedhash
+                )
             if not exists:
                 self.ui.warn(
                     _('changeset %s: %s references missing %s\n')
-                    % (cset, filename, storepath))
+                    % (cset, filename, storepath)
+                )
                 failed = True
             elif contents:
                 actualhash = lfutil.hashfile(storepath)
                 if actualhash != expectedhash:
                     self.ui.warn(
                         _('changeset %s: %s references corrupted %s\n')
-                        % (cset, filename, storepath))
+                        % (cset, filename, storepath)
+                    )
                     failed = True
         return failed