diff options
| author | 2024-02-14 09:17:02 +0000 | |
|---|---|---|
| committer | 2024-02-14 09:17:02 +0000 | |
| commit | 6d5ba1374d925100bf850dc5c4a6a99fd03c20e9 (patch) | |
| tree | 85bed8ad6d7e7d881c2568181df54d95b11601eb /arthur/__init__.py | |
| parent | Correct typos in Grafana API wrapper doc strings (diff) | |
| parent | add a sentry release workflow (diff) | |
Merge pull request #149 from python-discord/integrate-sentry
Integrate sentry into king arthur
Diffstat (limited to 'arthur/__init__.py')
| -rw-r--r-- | arthur/__init__.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arthur/__init__.py b/arthur/__init__.py index 269a320..a163be5 100644 --- a/arthur/__init__.py +++ b/arthur/__init__.py @@ -2,17 +2,13 @@ import asyncio import os -from functools import partial from typing import TYPE_CHECKING -import loguru from pydis_core.utils import apply_monkey_patches if TYPE_CHECKING: from arthur.bot import KingArthur -logger = loguru.logger.opt(colors=True) -logger.opt = partial(logger.opt, colors=True) apply_monkey_patches() |