Skip to content

Commit d1dddce

Browse files
committed
🛠️ Fixed wrong version import.
1 parent e8b088b commit d1dddce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tidal_dl_ng/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from rich.progress import BarColumn, Console, Progress, SpinnerColumn, TextColumn
99
from rich.table import Table
1010

11-
from tidal_dl_ng import version
11+
from tidal_dl_ng import __version__
1212
from tidal_dl_ng.config import Settings, Tidal
1313
from tidal_dl_ng.constants import CTX_TIDAL, MediaType
1414
from tidal_dl_ng.download import Download
@@ -22,7 +22,7 @@
2222

2323
def version_callback(value: bool):
2424
if value:
25-
print(f"{version}")
25+
print(f"{__version__}")
2626
raise typer.Exit()
2727

2828

0 commit comments

Comments
 (0)