@@ -549,7 +549,7 @@ def artists_paginated(
549
549
order : Optional [ArtistOrder ] = None ,
550
550
order_direction : Optional [OrderDirection ] = None ,
551
551
) -> List ["Artist" ]:
552
- """Get the users favorite artists, using pagination
552
+ """Get the users favorite artists, using pagination.
553
553
554
554
:param order: Optional; A :class:`ArtistOrder` describing the ordering type when returning the user favorite artists. eg.: "NAME, "DATE"
555
555
:param order_direction: Optional; A :class:`OrderDirection` describing the ordering direction when sorting by `order`. eg.: "ASC", "DESC"
@@ -592,7 +592,7 @@ def albums_paginated(
592
592
order : Optional [AlbumOrder ] = None ,
593
593
order_direction : Optional [OrderDirection ] = None ,
594
594
) -> List ["Album" ]:
595
- """Get the users favorite albums, using pagination
595
+ """Get the users favorite albums, using pagination.
596
596
597
597
:param order: Optional; A :class:`AlbumOrder` describing the ordering type when returning the user favorite albums. eg.: "NAME, "DATE"
598
598
:param order_direction: Optional; A :class:`OrderDirection` describing the ordering direction when sorting by `order`. eg.: "ASC", "DESC"
@@ -633,7 +633,8 @@ def playlists_paginated(
633
633
order : Optional [PlaylistOrder ] = None ,
634
634
order_direction : Optional [OrderDirection ] = None ,
635
635
) -> List ["Playlist" ]:
636
- """Get the users favorite playlists relative to the root folder, using pagination
636
+ """Get the users favorite playlists relative to the root folder, using
637
+ pagination.
637
638
638
639
:param order: Optional; A :class:`PlaylistOrder` describing the ordering type when returning the user favorite playlists. eg.: "NAME, "DATE"
639
640
:param order_direction: Optional; A :class:`OrderDirection` describing the ordering direction when sorting by `order`. eg.: "ASC", "DESC"
@@ -728,7 +729,8 @@ def tracks_paginated(
728
729
order : Optional [ItemOrder ] = None ,
729
730
order_direction : Optional [OrderDirection ] = None ,
730
731
) -> List ["Playlist" ]:
731
- """Get the users favorite playlists relative to the root folder, using pagination
732
+ """Get the users favorite playlists relative to the root folder, using
733
+ pagination.
732
734
733
735
:param order: Optional; A :class:`ItemOrder` describing the ordering type when returning the user favorite tracks. eg.: "NAME, "DATE"
734
736
:param order_direction: Optional; A :class:`OrderDirection` describing the ordering direction when sorting by `order`. eg.: "ASC", "DESC"
0 commit comments