Skip to content

Commit

Permalink
Make pipeline green again
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdanbobrowski committed Sep 2, 2024
1 parent e9fd7c2 commit 6b15979
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions blog2epub/blog2epub_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
from urllib import parse

from kivy.uix.anchorlayout import AnchorLayout # type: ignore
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.boxlayout import BoxLayout # type: ignore
from kivymd.uix.datatables import MDDataTable # type: ignore
from kivymd.uix.tab import MDTabsBase, MDTabs # type: ignore

from plyer import filechooser
from plyer import filechooser # type: ignore

from blog2epub.common.book import Book
from blog2epub.models.book import ArticleModel
Expand All @@ -37,10 +37,7 @@
from kivy.core.window import Window # type: ignore
from kivy.metrics import Metrics, sp # type: ignore
from kivymd.uix.boxlayout import MDBoxLayout # type: ignore
from kivymd.uix.button import (
MDFlatButton,
MDRoundFlatIconButton,
) # type: ignore
from kivymd.uix.button import MDFlatButton, MDRoundFlatIconButton # type: ignore
from kivy.uix.checkbox import CheckBox # type: ignore
from kivy.uix.image import Image # type: ignore
from kivymd.uix.label import MDLabel # type: ignore
Expand Down
2 changes: 1 addition & 1 deletion blog2epub/models/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class ConfigurationModel(BaseModel):
language: str = "en_US.UTF-8"
destination_folder: str = (Path.home(),)
destination_folder: str = str(Path.home())
include_images: bool = True
images_size: tuple[int, int] = (600, 800)
images_quality: int = 40

0 comments on commit 6b15979

Please sign in to comment.