diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 21144cd0a..3366b69b3 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -197,14 +197,14 @@ class CoreLogic: async def _reload( self, cog_names: Sequence[str] - ) -> Tuple[List[str], List[str], List[str], List[str]]: + ) -> Tuple[List[str], List[str], List[str], List[str], List[Tuple[str, str]]]: await self._unload(cog_names) loaded, load_failed, not_found, already_loaded, load_failed_with_reason = await self._load( cog_names ) - return loaded, load_failed, not_found, already_loaded + return loaded, load_failed, not_found, already_loaded, load_failed_with_reason async def _name(self, name: Optional[str] = None) -> str: """