Sat, 08 Jun 2024 15:25:29 +0200
Code Style Checker
- Updated these checkers.
- Miscellaneous to `flake8-bugbear v24.4.26`
- Logging to `flake8-logging v1.6.0`
# -*- coding: utf-8 -*- # Copyright (c) 2023 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing message translations for the code style plugin (unused part). """ from PyQt6.QtCore import QCoreApplication _unusedMessages = { ## Unused Arguments "U100": QCoreApplication.translate("UnusedChecker", "Unused argument '{0}'"), "U101": QCoreApplication.translate("UnusedChecker", "Unused argument '{0}'"), ## Unused Globals "U200": QCoreApplication.translate("UnusedChecker", "Unused global variable '{0}'"), } _unusedMessagesSampleArgs = { ## Unused Arguments "U100": ["foo_arg"], "U101": ["_bar_arg"], ## Unused Globals "U200": ["FOO"], }