Skip to content

Commit

Permalink
Merge branch 'v1.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdanbobrowski committed Dec 17, 2024
2 parents 7b921d5 + c3e9a68 commit 60c242f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions blog2epub/models/configuration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import random
from dataclasses import field
from pathlib import Path

from pydantic import BaseModel
Expand Down Expand Up @@ -38,12 +39,13 @@ class ConfigurationModel(BaseModel):
use_cache: bool = False
destination_folder: str = str(Path.home())
include_images: bool = True
images_size: list[int] = [600, 800]
images_size: tuple[int] = (600, 800)
images_quality: int = 40
images_bw: bool = True
url: str = ""
limit: str = "5"
skip: str = ""
history: list[str] = []
history: list[str] = field(default_factory=list)
email: str = ""
version: str = ""

Expand Down

0 comments on commit 60c242f

Please sign in to comment.