Skip to content

Commit 6af0951

Browse files
committed
Upgrade Python SDK to spec 1.20.8.dev8
1 parent 92364a5 commit 6af0951

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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.8.dev7"
95+
VERSION = "1.20.8.dev8"
9696
# To install the library, run the following
9797
#
9898
# python setup.py install

vrchatapi/models/world.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,8 +531,8 @@ def name(self, name):
531531
if self.local_vars_configuration.client_side_validation and name is None: # noqa: E501
532532
raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
533533
if (self.local_vars_configuration.client_side_validation and
534-
name is not None and len(name) < 1):
535-
raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501
534+
name is not None and len(name) < 0):
535+
raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501
536536

537537
self._name = name
538538

0 commit comments

Comments
 (0)