Reformat using black

This commit is contained in:
cuom1999 2022-05-14 12:57:27 -05:00
parent efee4ad081
commit a87fb49918
221 changed files with 19127 additions and 7310 deletions

View file

@ -24,10 +24,10 @@ class HashFileCache(object):
return os.path.join(self.root, hash, file)
def get_url(self, hash, file):
return urljoin(self.url, '%s/%s' % (hash, file))
return urljoin(self.url, "%s/%s" % (hash, file))
def read_file(self, hash, file):
return open(self.get_path(hash, file), 'rb')
return open(self.get_path(hash, file), "rb")
def read_data(self, hash, file):
with self.read_file(hash, file) as f:
@ -35,10 +35,10 @@ class HashFileCache(object):
def cache_data(self, hash, file, data, url=True, gzip=True):
if gzip and self.gzip:
with gzip_open(self.get_path(hash, file + '.gz'), 'wb') as f:
with gzip_open(self.get_path(hash, file + ".gz"), "wb") as f:
f.write(data)
with open(self.get_path(hash, file), 'wb') as f:
with open(self.get_path(hash, file), "wb") as f:
f.write(data)
if url: