Create a new context of the same type as this context, but for a new command. :meta private:
(self, command: Command)
| 835 | return self.command.get_help(self) |
| 836 | |
| 837 | def _make_sub_context(self, command: Command) -> Context: |
| 838 | """Create a new context of the same type as this context, but |
| 839 | for a new command. |
| 840 | |
| 841 | :meta private: |
| 842 | """ |
| 843 | return type(self)(command, info_name=command.name, parent=self) |
| 844 | |
| 845 | @t.overload |
| 846 | def invoke( |
no outgoing calls
no test coverage detected