bugfix-for-generic-update-param (#455)

This commit is contained in:
Qiaoqiao Zhang 2020-06-23 14:13:35 +08:00 коммит произвёл GitHub
Родитель 549c834586
Коммит 44930fb6f2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -159,7 +159,7 @@ function ConstructValuation(isGeneric: boolean, prefix: string, classNames: stri
if(value.startsWith("'") && value.endsWith("'")) {
left = prefix + "instance.";
} else {
str.push(prefix + "if " + paramName + " is not None:");
str.push(prefix + "if " + value + " is not None:");
left = prefix + " instance.";
}
for (var i = 1; i < classNames.length; ++i) {