Skip to content

Commit

Permalink
fix mypy for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel committed Jul 24, 2024
1 parent 9701607 commit 988cee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brother_ql_web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def warn(message: str, *args: Any, **kwargs: Any) -> None:
return
original_logger(message, *args, **kwargs)

logging.getLogger("brother_ql.devicedependent").warn = warn # type: ignore[assignment,method-assign] # noqa: E501
logging.getLogger("brother_ql.devicedependent").warn = warn # type: ignore[assignment,method-assign,attr-defined] # noqa: E501


patch_deprecation_warning()
Expand Down

0 comments on commit 988cee0

Please sign in to comment.