--- a/src/eric7/DebugClients/Python/DebugVariables.py Mon Feb 24 15:11:18 2025 +0100 +++ b/src/eric7/DebugClients/Python/DebugVariables.py Mon Feb 24 15:43:49 2025 +0100 @@ -777,7 +777,7 @@ ## resolver class to use ############################################################ -_TypeMap = _ArrayTypes = None # noqa: U200 +_TypeMap = _ArrayTypes = None # noqa: U-200 _TryArray = _TryNumpy = _TryDjango = True _MapCount = 0 @@ -814,21 +814,21 @@ # array.array may not be imported (yet) if _TryArray and "array" in sys.modules: - import array # __IGNORE_WARNING_I10__ + import array # __IGNORE_WARNING_I-10__ _TypeMap.append((array.array, arrayResolver)) _TryArray = False # numpy may not be imported (yet) if _TryNumpy and "numpy" in sys.modules: - import numpy # __IGNORE_WARNING_I10__ + import numpy # __IGNORE_WARNING_I-10__ _TypeMap.append((numpy.ndarray, ndarrayResolver)) _TryNumpy = False # django may not be imported (yet) if _TryDjango and "django" in sys.modules: - from django.utils.datastructures import MultiValueDict # __IGNORE_WARNING_I10__ + from django.utils.datastructures import MultiValueDict # noqa: I-10 # it should go before dict _TypeMap.insert(0, (MultiValueDict, multiValueDictResolver))