artists → authors
This commit is contained in:
parent
5dc81a4508
commit
0ae7d01a1e
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
"""FreeTube artists."""
|
"""FreeTube authors."""
|
||||||
|
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ if TYPE_CHECKING:
|
||||||
from .playlists import Playlist
|
from .playlists import Playlist
|
||||||
|
|
||||||
|
|
||||||
class Artist(Object):
|
class Author(Object):
|
||||||
"""FreeTube artist."""
|
"""FreeTube author."""
|
||||||
|
|
||||||
def __init__(self, uid: str, name: str) -> None:
|
def __init__(self, uid: str, name: str) -> None:
|
||||||
"""Set uid & name.
|
"""Set uid & name.
|
Loading…
Reference in a new issue