Переглянути джерело

Fix error message of max description length

pull/3011/head
Matheus Felipe 2 роки тому
джерело
коміт
9f0174fd96
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: AA785C523274872F
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      scripts/validate/format.py

+ 1
- 1
scripts/validate/format.py Переглянути файл

@@ -120,7 +120,7 @@ def check_description(line_num: int, description: str) -> List[str]:

desc_length = len(description)
if desc_length > max_description_length:
err_msg = error_message(line_num, f'description should not exceed 100 characters (currently {desc_length})')
err_msg = error_message(line_num, f'description should not exceed {max_description_length} characters (currently {desc_length})')
err_msgs.append(err_msg)
return err_msgs


Завантаження…
Відмінити
Зберегти