Skip to content

Commit

Permalink
Merge branch 'dev' into v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdanbobrowski committed Dec 17, 2024
2 parents 922ad7d + de8da6a commit 41923cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blog2epub/common/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(
dirs: DirModel,
url: str,
interface: EmptyInterface,
images_size: list[int],
images_size: tuple[int, int],
images_quality: int,
ignore_downloads: list[str],
):
Expand Down
2 changes: 1 addition & 1 deletion blog2epub/models/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ConfigurationModel(BaseModel):
use_cache: bool = False
destination_folder: str = str(Path.home())
include_images: bool = True
images_size: tuple[int] = (600, 800)
images_size: tuple[int, int] = (600, 800)
images_quality: int = 40
images_bw: bool = True
url: str = ""
Expand Down

0 comments on commit 41923cf

Please sign in to comment.