From c991e8b62f5c849e005f8e027018b4a22bbce3b0 Mon Sep 17 00:00:00 2001 From: bobloy Date: Mon, 30 Nov 2020 13:10:26 -0500 Subject: [PATCH] Refix line lengths --- redbot/core/core_commands.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 806866655..e62f530f8 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -47,7 +47,6 @@ from .utils.chat_formatting import ( ) from .commands.requires import PrivilegeLevel - _entities = { "*": "*", "\\": "\", @@ -92,7 +91,6 @@ __all__ = ["Core"] log = logging.getLogger("red") - _ = i18n.Translator("Core", __file__) TokenConverter = commands.get_dict_converter(delims=[" ", ",", ";"]) @@ -989,8 +987,8 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): async def mydata_user_deletion_by_owner(self, ctx, user_id: int): """Delete data [botname] has about a user. - This will cause the bot to get rid of or disassociate a lot of data about the specified - user. This may include more than just end user data, including anti abuse records. + This will cause the bot to get rid of or disassociate a lot of data about the specified user. + This may include more than just end user data, including anti abuse records. **Arguments:** @@ -1062,8 +1060,8 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): """ Commands for toggling embeds on or off. - This setting determines whether or not to use embeds as a response to a command (for - commands that support it). The default is to use embeds. + This setting determines whether or not to use embeds as a response to a command (for commands that support it). + The default is to use embeds. """ @embedset.command(name="showsettings")