Fix introduced potential TypeError with _get_command_error

This commit is contained in:
Rapptz 2024-08-28 15:22:35 -04:00
parent a183a56dd9
commit c41cadfa91

View File

@ -498,7 +498,8 @@ def _get_command_error(
else:
errors = {key: ' '.join(x.get('message', '') for x in inner_errors)}
messages.extend(f'{indentation} {k}: {v}' for k, v in errors.items())
if isinstance(errors, dict):
messages.extend(f'{indentation} {k}: {v}' for k, v in errors.items())
class CommandSyncFailure(AppCommandError, HTTPException):