Skip to content

Commit fadf6cc

Browse files
committed
🛠️ Fixed cfg cli command. Was broken after refactoring. Fixes #5.
1 parent 042495d commit fadf6cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tidal_dl_ng/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def callback_app(
3737

3838
@app.command(name="cfg")
3939
def settings_management(
40-
names: list[str] = None,
40+
names: Annotated[Optional[list[str]], typer.Argument()] = None,
4141
editor: Annotated[
4242
bool, typer.Option("--editor", "-e", help="Open the settings file in your default editor.")
4343
] = False,

tidal_dl_ng/model/cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Settings:
1717
video_download: bool = True
1818
multi_thread: bool = False
1919
download_delay: bool = True
20-
download_base_path: str = "./download/"
20+
download_base_path: str = "./download"
2121
quality_audio: Quality = Quality.low_320k
2222
quality_video: QualityVideo = QualityVideo.P480
2323
use_playlist_folder: bool = True

0 commit comments

Comments
 (0)