You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
foo --help produces a metavar of PARAM instead of the more logically correct MY_TYPE.
This is because Argument.make_metavar never looks at self.type.get_metavar(self).
Either this should be fixed so that Argument.make_metavar uses the type metavar by default, or Argument.make_metavar should take a parameter that lets you toggle between the default "name" metavar and the type's default metavar.