Compare commits

..

2 commits

Author SHA1 Message Date
6d8e139b19
fix(bible): pylint fixes
All checks were successful
Actions / Lint Code (Pylint) (push) Successful in 17s
Actions / Build Documentation (MkDocs) (push) Successful in 13s
2024-02-02 11:27:32 -05:00
eb9d744a3f
fix(backup): pylint fixes 2024-02-02 11:27:28 -05:00
2 changed files with 2 additions and 4 deletions

View file

@ -17,6 +17,7 @@ from redbot.core.bot import Red
from redbot.core.utils.chat_formatting import error, text_to_file
# pylint: disable=protected-access
class Backup(commands.Cog):
"""A utility to make reinstalling repositories and cogs after migrating the bot far easier."""
@ -46,9 +47,7 @@ class Backup(commands.Cog):
)
return
all_repos = list(
downloader._repo_manager.repos
) # pylint: disable=protected-access
all_repos = list(downloader._repo_manager.repos)
export_data = []

View file

@ -5,7 +5,6 @@
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
import json
import logging
import random