Skip to content

Commit

Permalink
Update doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
rmk135 committed Dec 20, 2021
1 parent ef465a5 commit 27c7c93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/dependency_injector/providers.c
Expand Up @@ -35675,7 +35675,7 @@ static PyObject *__pyx_pf_19dependency_injector_9providers_19ConfigurationOption

/* Python wrapper */
static PyObject *__pyx_pw_19dependency_injector_9providers_19ConfigurationOption_51from_env(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_19dependency_injector_9providers_19ConfigurationOption_50from_env[] = "Load configuration value from the environment variable.\n\n :param name: Name of the environment variable.\n :type name: str\n\n :param default: Default value that is used if environment variable does not exist.\n :type default: object\n\n :param required: When required is True, raise an exception if environment variable is undefined.\n :type required: bool\n\n :param as_: Type converter (int, float, etc).\n :type as_: object\n\n :rtype: None\n ";
static char __pyx_doc_19dependency_injector_9providers_19ConfigurationOption_50from_env[] = "Load configuration value from the environment variable.\n\n :param name: Name of the environment variable.\n :type name: str\n\n :param default: Default value that is used if environment variable does not exist.\n :type default: object\n\n :param required: When required is True, raise an exception if environment variable is undefined.\n :type required: bool\n\n :param as_: Callable used for type casting (int, float, etc).\n :type as_: object\n\n :rtype: None\n ";
static PyObject *__pyx_pw_19dependency_injector_9providers_19ConfigurationOption_51from_env(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_name = 0;
PyObject *__pyx_v_default = 0;
Expand Down Expand Up @@ -44327,7 +44327,7 @@ static PyObject *__pyx_pf_19dependency_injector_9providers_13Configuration_64fro

/* Python wrapper */
static PyObject *__pyx_pw_19dependency_injector_9providers_13Configuration_67from_env(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_19dependency_injector_9providers_13Configuration_66from_env[] = "Load configuration value from the environment variable.\n\n :param name: Name of the environment variable.\n :type name: str\n\n :param default: Default value that is used if environment variable does not exist.\n :type default: object\n\n :param required: When required is True, raise an exception if environment variable is undefined.\n :type required: bool\n\n :param as_: Type converter (int, float, etc).\n :type as_: object\n\n :rtype: None\n ";
static char __pyx_doc_19dependency_injector_9providers_13Configuration_66from_env[] = "Load configuration value from the environment variable.\n\n :param name: Name of the environment variable.\n :type name: str\n\n :param default: Default value that is used if environment variable does not exist.\n :type default: object\n\n :param required: When required is True, raise an exception if environment variable is undefined.\n :type required: bool\n\n :param as_: Callable used for type casting (int, float, etc).\n :type as_: object\n\n :rtype: None\n ";
static PyObject *__pyx_pw_19dependency_injector_9providers_13Configuration_67from_env(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_name = 0;
PyObject *__pyx_v_default = 0;
Expand Down
4 changes: 2 additions & 2 deletions src/dependency_injector/providers.pyx
Expand Up @@ -1701,7 +1701,7 @@ cdef class ConfigurationOption(Provider):
:param required: When required is True, raise an exception if environment variable is undefined.
:type required: bool
:param as_: Type converter (int, float, etc).
:param as_: Callable used for type casting (int, float, etc).
:type as_: object
:rtype: None
Expand Down Expand Up @@ -2209,7 +2209,7 @@ cdef class Configuration(Object):
:param required: When required is True, raise an exception if environment variable is undefined.
:type required: bool
:param as_: Type converter (int, float, etc).
:param as_: Callable used for type casting (int, float, etc).
:type as_: object
:rtype: None
Expand Down

0 comments on commit 27c7c93

Please sign in to comment.