Fri, 31 May 2024 15:18:05 +0200
Code Style Checker, Name Ordering:
- Changed the import ordering such that '__x' is sorted before '_xx' before other module names (xxx). That is in line with isort.
# -*- 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"], }