Display the path of the config file.
(ctx)
| 309 | @config.command("path") |
| 310 | @click.pass_context |
| 311 | def config_path(ctx): |
| 312 | """Display the path of the config file.""" |
| 313 | config_path = ctx.obj["config_path"] |
| 314 | console.print(f"Config path: [bold cyan]'{config_path}'") |
| 315 | |
| 316 | |
| 317 | @rip.group() |