Skip to content

Commit ceaad86

Browse files
committed
Upgrade Python SDK to spec 1.20.10.dev12
1 parent 1b79673 commit ceaad86

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/CurrentUserPresence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**banner_color** | **str** | | [optional]
1111
**banner_type** | **str** | | [optional]
1212
**banner_url** | **str** | | [optional]
13-
**current_avatar_tags** | **list[str]** | | [optional]
13+
**current_avatar_tags** | **str** | | [optional]
1414
**debugflag** | **str** | | [optional]
1515
**display_name** | **str** | | [optional]
1616
**groups** | **list[str]** | | [optional]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
from setuptools import setup, find_packages # noqa: H301
9393

9494
NAME = "vrchatapi"
95-
VERSION = "1.20.10.dev8"
95+
VERSION = "1.20.10.dev12"
9696
# To install the library, run the following
9797
#
9898
# python setup.py install

vrchatapi/models/current_user_presence.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class CurrentUserPresence(object):
4242
'banner_color': 'str',
4343
'banner_type': 'str',
4444
'banner_url': 'str',
45-
'current_avatar_tags': 'list[str]',
45+
'current_avatar_tags': 'str',
4646
'debugflag': 'str',
4747
'display_name': 'str',
4848
'groups': 'list[str]',
@@ -298,7 +298,7 @@ def current_avatar_tags(self):
298298
299299
300300
:return: The current_avatar_tags of this CurrentUserPresence. # noqa: E501
301-
:rtype: list[str]
301+
:rtype: str
302302
"""
303303
return self._current_avatar_tags
304304

@@ -308,7 +308,7 @@ def current_avatar_tags(self, current_avatar_tags):
308308
309309
310310
:param current_avatar_tags: The current_avatar_tags of this CurrentUserPresence. # noqa: E501
311-
:type current_avatar_tags: list[str]
311+
:type current_avatar_tags: str
312312
"""
313313

314314
self._current_avatar_tags = current_avatar_tags

0 commit comments

Comments
 (0)