Stores data about a disabled command. This data is used to restore its functions when the command is enabled.
| 219 | |
| 220 | |
| 221 | class DisabledCommand(NamedTuple): |
| 222 | """Stores data about a disabled command. |
| 223 | |
| 224 | This data is used to restore its functions when the command is enabled. |
| 225 | """ |
| 226 | |
| 227 | command_func: BoundCommandFunc |
| 228 | help_func: Callable[[], Any] | None |
| 229 | completer_func: BoundCompleter | None |
| 230 | |
| 231 | |
| 232 | class CommandParsers: |
no outgoing calls
searching dependent graphs…