From 2f0ab45f1176a9dabddc6ae8512a790d8edcabe7 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Sun, 24 Jan 2021 10:19:04 -0500 Subject: [PATCH] Make doc block fix --- src/dependency_injector/providers.c | 2 +- src/dependency_injector/providers.pyx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dependency_injector/providers.c b/src/dependency_injector/providers.c index dd0466f7..833c1862 100644 --- a/src/dependency_injector/providers.c +++ b/src/dependency_injector/providers.c @@ -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; diff --git a/src/dependency_injector/providers.pyx b/src/dependency_injector/providers.pyx index 7eb8af9a..fe0d7add 100644 --- a/src/dependency_injector/providers.pyx +++ b/src/dependency_injector/providers.pyx @@ -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