From abcf1790420368f32fed381f600c0088d87eb989 Mon Sep 17 00:00:00 2001 From: bobloy Date: Fri, 18 Jan 2019 19:47:58 -0500 Subject: [PATCH] [CogManager] Fix return type-hint (#2319) --- redbot/core/core_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 89f7a3918..fc752a9de 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -62,7 +62,7 @@ class CoreLogic: async def _load( self, cog_names: Iterable[str] - ) -> Tuple[List[str], List[str], List[str], List[str]]: + ) -> Tuple[List[str], List[str], List[str], List[str], List[Tuple[str, str]]]: """ Loads cogs by name. Parameters