Sat, 26 Apr 2025 12:34:32 +0200
MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.
# -*- coding: utf-8 -*- # Copyright (c) 2020 - 2025 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing message translations for the code style plugin messages (code complexity part). """ from PyQt6.QtCore import QCoreApplication _complexityMessages = { "C-101": QCoreApplication.translate( "ComplexityChecker", "'{0}' is too complex ({1})" ), "C-111": QCoreApplication.translate( "ComplexityChecker", "source code line is too complex ({0})" ), "C-112": QCoreApplication.translate( "ComplexityChecker", "overall source code line complexity is too high ({0})" ), } _complexityMessagesSampleArgs = { "C-101": ["foo.bar", "42"], "C-111": [42], "C-112": [12.0], }