diff options
author | 2025-04-10 18:12:57 -0700 | |
---|---|---|
committer | 2025-04-10 18:12:57 -0700 | |
commit | 4c169a58de3ac4245cdd27d30ce9ab1da4c3e546 (patch) | |
tree | c2374f0438c327e77f3b1218b46106d9aa13bd81 | |
parent | fix ruff lints (diff) |
fix tests
-rw-r--r-- | bot/exts/utils/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/utils/utils.py b/bot/exts/utils/utils.py index 714f369f9..68019b143 100644 --- a/bot/exts/utils/utils.py +++ b/bot/exts/utils/utils.py @@ -16,7 +16,7 @@ from bot.utils import messages, time log = get_logger(__name__) -ZEN_OF_PYTHON = """\ +ZEN_OF_PYTHON = """ Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. @@ -36,7 +36,7 @@ Although never is often better than *right* now. If the implementation is hard to explain, it's a bad idea. If the implementation is easy to explain, it may be a good idea. Namespaces are one honking great idea -- let's do more of those! -""" +""".strip() LEADS_AND_COMMUNITY = (Roles.project_leads, Roles.domain_leads, Roles.partners, Roles.python_community) |