Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions linodecli/plugins/get-kubeconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import yaml

from linodecli.exit_codes import ExitCodes
from linodecli.plugins import inherit_plugin_args

PLUGIN_BASE = "linode-cli get-kubeconfig"

Expand All @@ -22,8 +23,9 @@ def call(args, context):
"""
The entrypoint for this plugin
"""
parser = argparse.ArgumentParser(PLUGIN_BASE, add_help=True)

parser = inherit_plugin_args(
argparse.ArgumentParser(PLUGIN_BASE, add_help=True)
)
group = parser.add_mutually_exclusive_group()

parser.add_argument(
Expand Down