File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9292from setuptools import setup , find_packages # noqa: H301
9393
9494NAME = "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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments