Initialize the CLI context.
(self, app, no_color, workdir, quiet=False)
| 38 | """Context Object for the CLI.""" |
| 39 | |
| 40 | def __init__(self, app, no_color, workdir, quiet=False): |
| 41 | """Initialize the CLI context.""" |
| 42 | self.app = app or get_current_app() |
| 43 | self.no_color = no_color |
| 44 | self.quiet = quiet |
| 45 | self.workdir = workdir |
| 46 | |
| 47 | @cached_property |
| 48 | def OK(self): |
nothing calls this directly
no test coverage detected