Fix formatting of plugin commands in PromptGenerator

This commit is contained in:
Reinier van der Leer
2023-08-25 01:09:53 +02:00
committed by GitHub
parent e153ae23a3
commit 7285f7dad3

View File

@@ -284,6 +284,6 @@ class PromptGenerator:
]
# Add commands from plugins etc.
command_strings += [str(cmd) for cmd in self.commands]
command_strings += [str(cmd) for cmd in self.commands.values()]
return self._generate_numbered_list(command_strings)