git_dag.parameters.context_ignore_config_file

class git_dag.parameters.context_ignore_config_file[source]

Bases: ContextDecorator

Context manager within which the config file is ignored.

Example

print(ParamsPublic.ignore_config_file)  # False
with context_ignore_config_file():
    print(ParamsPublic.ignore_config_file)  # True

print(ParamsPublic.ignore_config_file)  # False

Methods

__call__(func)

Call self as a function.