Wed, 31 Mar 2021 19:51:41 +0200
Code Style Checker
- started to implement a checker for potential code simplifications
# -*- coding: utf-8 -*- # Copyright (c) 2020 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing message translations for the code style plugin messages (miscellaneous part). """ from PyQt5.QtCore import QCoreApplication _simplifyMessages = { "Y101": QCoreApplication.translate( "SimplifyChecker", "Multiple 'isinstance()' calls which can be merged into a single " "call for variable '{0}'"), } _simplifyMessagesSampleArgs = { "Y101": ["foo"], }