Skip to content
This repository was archived by the owner on Dec 20, 2021. It is now read-only.

Commit e6a5097

Browse files
committed
FavoriteGroup subclasses
1 parent 24a25a5 commit e6a5097

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

vrcpy/favorite.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ def __init__(self, client, obj, loop=None):
8686

8787
self._assign(obj)
8888

89+
class WorldFavoriteGroup(FavoriteGroup):
90+
pass
8991

9092
class AvatarFavorite(BaseFavorite):
9193
def __init__(self, client, obj, loop=None):
@@ -100,6 +102,8 @@ def __init__(self, client, obj, loop=None):
100102

101103
self._assign(obj)
102104

105+
class AvatarFavoriteGroup(FavoriteGroup):
106+
pass
103107

104108
class FriendFavorite(BaseFavorite):
105109
def __init__(self, client, obj, loop=None):
@@ -113,3 +117,6 @@ def __init__(self, client, obj, loop=None):
113117
})
114118

115119
self._assign(obj)
120+
121+
class FriendFavoriteGroup(FavoriteGroup):
122+
pass

0 commit comments

Comments
 (0)