--- a/src/eric7/DebugClients/Python/DebugVariables.py Sun Nov 06 11:22:39 2022 +0100 +++ b/src/eric7/DebugClients/Python/DebugVariables.py Mon Nov 07 17:19:58 2022 +0100 @@ -807,21 +807,21 @@ # array.array may not be imported (yet) if _TryArray and "array" in sys.modules: - import array + import array # __IGNORE_WARNING_I10__ _TypeMap.append((array.array, arrayResolver)) _TryArray = False # numpy may not be imported (yet) if _TryNumpy and "numpy" in sys.modules: - import numpy + import numpy # __IGNORE_WARNING_I10__ _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 + from django.utils.datastructures import MultiValueDict # __IGNORE_WARNING_I10__ # it should go before dict _TypeMap.insert(0, (MultiValueDict, multiValueDictResolver))