Skip to content

Commit

Permalink
Merge branch 'release/3.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed May 19, 2022
2 parents 0405ec3 + d91fd00 commit 372ad49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python_utils/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
'with the standard Python install')
__url__: str = 'https://github.com/WoLpH/python-utils'
# Omit type info due to automatic versioning script
__version__ = '3.2.2'
__version__ = '3.2.3'
4 changes: 1 addition & 3 deletions python_utils/loguru.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,5 @@ class Logurud(logger.LoggerBase):
logger: loguru.Logger

def __new__(cls, *args, **kwargs):
# Import at runtime to make loguru an optional dependency
import loguru
cls.logger: loguru.Loguru = loguru.logger
cls.logger: loguru.Loguru = loguru.logger.opt(depth=1)
return super().__new__(cls)

0 comments on commit 372ad49

Please sign in to comment.