mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-20 18:06:08 -05:00
fix some deprecation warnings (#3610)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import asyncio
|
||||
import collections
|
||||
import collections.abc
|
||||
import logging
|
||||
import pickle
|
||||
import weakref
|
||||
@@ -510,7 +510,7 @@ class Group(Value):
|
||||
return self(acquire_lock=acquire_lock)
|
||||
|
||||
def nested_update(
|
||||
self, current: collections.Mapping, defaults: Dict[str, Any] = ...
|
||||
self, current: collections.abc.Mapping, defaults: Dict[str, Any] = ...
|
||||
) -> Dict[str, Any]:
|
||||
"""Robust updater for nested dictionaries
|
||||
|
||||
@@ -521,7 +521,7 @@ class Group(Value):
|
||||
defaults = self.defaults
|
||||
|
||||
for key, value in current.items():
|
||||
if isinstance(value, collections.Mapping):
|
||||
if isinstance(value, collections.abc.Mapping):
|
||||
result = self.nested_update(value, defaults.get(key, {}))
|
||||
defaults[key] = result
|
||||
else:
|
||||
|
||||
@@ -22,7 +22,7 @@ from .utils.chat_formatting import inline, bordered, format_perms_list, humanize
|
||||
log = logging.getLogger("red")
|
||||
init()
|
||||
|
||||
INTRO = """
|
||||
INTRO = r"""
|
||||
______ _ ______ _ _ ______ _
|
||||
| ___ \ | | | _ (_) | | | ___ \ | |
|
||||
| |_/ /___ __| | ______ | | | |_ ___ ___ ___ _ __ __| | | |_/ / ___ | |_
|
||||
|
||||
Reference in New Issue
Block a user