Skip to content

Commit

Permalink
rename all instances of playlistr to mussty
Browse files Browse the repository at this point in the history
  • Loading branch information
ancientjpeg committed Mar 20, 2024
1 parent 358021f commit 403ef1c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: playlistr
name: mussty
channels:
- defaults
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "playlistr"
name = "mussty"
description = "A streaming service migration CLI tool."
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion src/mussty/resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Resolver:

def __init__(self, types: tuple[type, type], config: dict = {}) -> None:
if not issubclass(types[0], Service) or not issubclass(types[1], Service):
raise TypeError("Services must be derived from playlistr.service")
raise TypeError("Services must be derived from mussty.service")

print(
f"Converting content from service {types[0].__name__} to service {types[1].__name__}"
Expand Down
6 changes: 3 additions & 3 deletions test/typing/test_typing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from playlistr.service import Service
from playlistr.spotify import Spotify
from playlistr.apple_music import AppleMusic
from mussty.service import Service
from mussty.spotify import Spotify
from mussty.apple_music import AppleMusic


def test_typing():
Expand Down

0 comments on commit 403ef1c

Please sign in to comment.