Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python_utils/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def __get_name(cls, *name_parts: str) -> str:
LoggerBase._LoggerBase__get_name(*name_parts), # type: ignore[attr-defined] # pyright: ignore[reportUnknownMemberType, reportUnknownVariableType, reportAttributeAccessIssue]
)

def __new__(cls, *args: types.Any, **kwargs: types.Any) -> 'Logged':
def __new__(cls, *args: types.Any, **kwargs: types.Any):
Comment thread
RamogninoF marked this conversation as resolved.
Outdated
"""
Create a new instance of the class and initialize the logger.

Expand Down