mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-25 11:01:12 +00:00
Fix mypy error
This commit is contained in:
parent
dabf7c6e10
commit
bb5d8152f1
1 changed files with 5 additions and 5 deletions
|
@ -18,7 +18,7 @@ class BookwyrmTarFile(tarfile.TarFile):
|
||||||
self.addfile(info, fileobj=buffer)
|
self.addfile(info, fileobj=buffer)
|
||||||
|
|
||||||
def add_image(
|
def add_image(
|
||||||
self, image: Any, filename: Optional[str] = None, directory: Any = ""
|
self, image: Any, filename: Optional[str] = None, directory: str = ""
|
||||||
) -> None:
|
) -> None:
|
||||||
"""
|
"""
|
||||||
Add an image to the tar archive
|
Add an image to the tar archive
|
||||||
|
@ -26,12 +26,12 @@ class BookwyrmTarFile(tarfile.TarFile):
|
||||||
:param str directory: the directory in the archive to put the image
|
:param str directory: the directory in the archive to put the image
|
||||||
"""
|
"""
|
||||||
if filename is None:
|
if filename is None:
|
||||||
filename = image.name
|
dst_filename = image.name
|
||||||
else:
|
else:
|
||||||
filename += os.path.splitext(image.name)[1]
|
dst_filename = filename + os.path.splitext(image.name)[1]
|
||||||
path = os.path.join(directory, filename)
|
dst_path = os.path.join(directory, dst_filename)
|
||||||
|
|
||||||
info = tarfile.TarInfo(name=path)
|
info = tarfile.TarInfo(name=dst_path)
|
||||||
info.size = image.size
|
info.size = image.size
|
||||||
|
|
||||||
self.addfile(info, fileobj=image)
|
self.addfile(info, fileobj=image)
|
||||||
|
|
Loading…
Reference in a new issue