Skip to content

Commit

Permalink
Update base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lgc2333 authored Jun 26, 2024
1 parent 6435a4c commit a4a3198
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions nonebot_plugin_multincm/data_source/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,10 @@ class BaseSongListPage(Generic[_TRawRespInner, _TSongList]):
content: Iterable[_TRawRespInner]
father: _TSongList

@override
def __str__(self) -> str:
return f"{type(self).__name__}(father={self.father})"

@classmethod
@abstractmethod
async def transform_resp_to_list_card(
Expand Down

0 comments on commit a4a3198

Please sign in to comment.