Make doc block fix

This commit is contained in:
Roman Mogylatov 2021-01-24 10:19:04 -05:00
parent efd049f43c
commit 2f0ab45f11
2 changed files with 2 additions and 2 deletions

View File

@ -34212,7 +34212,7 @@ static PyObject *__pyx_pf_19dependency_injector_9providers_13Configuration_28fro
/* Python wrapper */
static PyObject *__pyx_pw_19dependency_injector_9providers_13Configuration_31from_dict(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_19dependency_injector_9providers_13Configuration_30from_dict[] = "Load configuration from the dictionary.\n\n Loaded configuration is merged recursively over existing configuration.\n\n :param options: Configuration options.\n :type options: dict\n\n :param required: When required is True, raise an exception if file does not exist.\n :type required: bool\n\n :rtype: None\n ";
static char __pyx_doc_19dependency_injector_9providers_13Configuration_30from_dict[] = "Load configuration from the dictionary.\n\n Loaded configuration is merged recursively over existing configuration.\n\n :param options: Configuration options.\n :type options: dict\n\n :param required: When required is True, raise an exception if dictionary is empty.\n :type required: bool\n\n :rtype: None\n ";
static PyObject *__pyx_pw_19dependency_injector_9providers_13Configuration_31from_dict(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_options = 0;
PyObject *__pyx_v_required = 0;

View File

@ -1727,7 +1727,7 @@ cdef class Configuration(Object):
:param options: Configuration options.
:type options: dict
:param required: When required is True, raise an exception if file does not exist.
:param required: When required is True, raise an exception if dictionary is empty.
:type required: bool
:rtype: None