Browse Source

Fix NameError in utils.get

pull/7494/head
Rapptz 3 years ago
parent
commit
5589934a59
  1. 2
      discord/utils.py

2
discord/utils.py

@ -535,7 +535,7 @@ def get(iterable: _Iter[T], /, **attrs: Any) -> Union[Optional[T], Coro[Optional
return (
_get(iterable, **attrs) # type: ignore
if hasattr(iterable, '__iter__') # isinstance(iterable, collections.abc.Iterable) is too slow
else _aget(predicate, **attrs) # type: ignore
else _aget(iterable, **attrs) # type: ignore
)

Loading…
Cancel
Save