Skip to content

Commit 460d2b1

Browse files
committed
Generate and override
1 parent d452489 commit 460d2b1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

clever/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,5 +244,5 @@ def to_debug_report(self):
244244
"OS: {env}\n"\
245245
"Python Version: {pyversion}\n"\
246246
"Version of the API: 2.0.0\n"\
247-
"SDK Package Version: 3.0.0".\
247+
"SDK Package Version: 3.0.1".\
248248
format(env=sys.platform, pyversion=sys.version)

clever/models/student.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ def home_language(self, home_language):
416416
:param home_language: The home_language of this Student.
417417
:type: str
418418
"""
419-
allowed_values = ["English", "Albanian", "Amharic", "Arabic", "Bengali", "Bosnian", "Burmese", "Cantonese", "Chinese", "Dutch", "Farsi", "French", "German", "Hebrew", "Hindi", "Hmong", "Ilocano", "Japanese", "Javanese", "Karen", "Khmer", "Korean", "Laotian", "Latvian", "Malay", "Mandarin", "Nepali", "Oromo", "Polish", "Portuguese", "Punjabi", "Romanian", "Russian", "Samoan", "Serbian", "Somali", "Spanish", "Swahili", "Tagalog", "Tamil", "Telegu", "Thai", "Tigrinya", "Turkish", "Ukrainian", "Urdu", "Vietnamese"]
419+
allowed_values = ["English", "Albanian", "Amharic", "Arabic", "Bengali", "Bosnian", "Burmese", "Cantonese", "Chinese", "Dutch", "Farsi", "French", "German", "Hebrew", "Hindi", "Hmong", "Ilocano", "Japanese", "Javanese", "Karen", "Khmer", "Korean", "Laotian", "Latvian", "Malay", "Mandarin", "Nepali", "Oromo", "Polish", "Portuguese", "Punjabi", "Romanian", "Russian", "Samoan", "Serbian", "Somali", "Spanish", "Swahili", "Tagalog", "Tamil", "Telugu", "Thai", "Tigrinya", "Turkish", "Ukrainian", "Urdu", "Vietnamese"]
420420
if home_language not in allowed_values:
421421
raise ValueError(
422422
"Invalid value for `home_language` ({0}), must be one of {1}"

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Clever API
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: 2.0.0
7-
- Package version: 3.0.0
7+
- Package version: 3.0.1
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
## Documentation for API Endpoints

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from setuptools import setup, find_packages
1616

1717
NAME = "clever-python"
18-
VERSION = "3.0.0"
18+
VERSION = "3.0.1"
1919
# To install the library, run the following
2020
#
2121
# python setup.py install

0 commit comments

Comments
 (0)