Add autodoc_typehints = 'none'

This commit is contained in:
Степаненко Ольга 2021-04-15 11:49:08 +03:00
parent 5ac60de2ef
commit df97d170bf
3 changed files with 3 additions and 1 deletions

View File

@ -181,6 +181,7 @@ intersphinx_mapping = {
}
autodoc_default_flags = ['members']
autodoc_typehints = "none"
# spell checking
spelling_lang = 'ru_RU'

View File

@ -23,6 +23,7 @@ class ZendeskAdmin:
:type token: :class:`str`
:param password: Пароль администратора, указанный в env
:type password: :class:`str`
"""
credentials: dict = {

View File

@ -96,7 +96,7 @@ class StatisticForm(forms.Form):
:param range_end: Дата и время окончания работы
:type range_end: :class:`django.forms.fields.DateField`
"""
email = forms.EmailField(
email: str = forms.EmailField(
label='Электроная почта',
widget=forms.EmailInput(
attrs={