Skip to content

Commit

Permalink
fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Al-Taie authored and Al-Taie committed Jul 30, 2023
1 parent 3558f90 commit 2fbe488
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/domain/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def run(self, *args: Any, **kwargs: Any) -> Any:
app_config: AppConfig = CaseSensitiveConfigParser.read_config()

config = Config(
*args,
urls_or_paths=self.urls,
playlist_items="",
verbose=False,
Expand All @@ -85,13 +84,12 @@ def run(self, *args: Any, **kwargs: Any) -> Any:
output_sample=0,
output_formats=app_config.get_output_formats(),
output_dir=app_config.save_location.replace("file:///", ""),
**kwargs,
)

return farrigh(config)

@staticmethod
@Slot(str)
@staticmethod
def open_folder(path: str) -> None:
if system() == "Windows":
from os import startfile # type: ignore[attr-defined]
Expand Down
2 changes: 1 addition & 1 deletion src/qml/components/ConvertPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "convert"
Rectangle {
id: root
//audioUrls must be in jsonstring format
signal convertRequested(list urls)
signal convertRequested(list<string> urls)

color: theme.background

Expand Down
2 changes: 1 addition & 1 deletion src/qml/components/SideBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Rectangle {
property int index: 0

signal sidebarButtonClicked(int index)
signal folderClick
signal folderClick()

color: theme.primary
width: 80
Expand Down

0 comments on commit 2fbe488

Please sign in to comment.