18 lines
345 B
Python
18 lines
345 B
Python
"""FreeTube artists."""
|
|
|
|
from rwx import Object
|
|
|
|
|
|
class Artist(Object):
|
|
"""FreeTube artist."""
|
|
|
|
def __init__(self, uid: str, name:str) -> None:
|
|
"""Set uid & name.
|
|
|
|
:param uid: identifier
|
|
:type uid: str
|
|
:param name: label
|
|
:type name: str
|
|
"""
|
|
self.uid = uid
|
|
self.name = name
|