MCPcopy Create free account
hub / github.com/ipython/traitlets / print_help

Method print_help

traitlets/config/loader.py:67–70  ·  view source on GitHub ↗
(self, file: t.Any = None)

Source from the content-addressed store, hash-verified

65 """Simple argparse subclass that prints help to stdout by default."""
66
67 def print_help(self, file: t.Any = None) -> None:
68 if file is None:
69 file = sys.stdout
70 return super().print_help(file)
71
72 print_help.__doc__ = argparse.ArgumentParser.print_help.__doc__
73

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected