The recommended way to get a ContextObj instance, see the class docstring for details
(ctx: click.Context)
| 97 | |
| 98 | @staticmethod |
| 99 | def get(ctx: click.Context) -> "ContextObj": |
| 100 | """The recommended way to get a ContextObj instance, see the class docstring for |
| 101 | details""" |
| 102 | assert ctx.obj |
| 103 | return cast(ContextObj, ctx.obj) |
no outgoing calls