From fa5a1f9c195b5b6cd516f2ca638460cb2ee8e5cf Mon Sep 17 00:00:00 2001 From: Will Date: Mon, 14 Aug 2017 18:53:11 -0400 Subject: [PATCH] [Docs] Config fix (#921) --- core/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/config.py b/core/config.py index bc0c43af7..abb0d0e8c 100644 --- a/core/config.py +++ b/core/config.py @@ -1,6 +1,6 @@ import logging -from typing import Callable, Union, Tuple, Coroutine +from typing import Callable, Union, Tuple import discord from copy import deepcopy @@ -195,7 +195,7 @@ class Group(Value): return not isinstance(default, dict) - def get_attr(self, item: str, default=None, resolve=True) -> Union[Value, Coroutine]: + def get_attr(self, item: str, default=None, resolve=True): """ This is available to use as an alternative to using normal Python attribute access. It is required if you find a need for dynamic attribute access.