eric6/DebugClients/Python/DebugVariables.py

changeset 7250
d8bdc55aee1a
parent 6988
87ad87ef1910
child 7332
49076c600903
--- a/eric6/DebugClients/Python/DebugVariables.py	Thu Sep 19 19:39:04 2019 +0200
+++ b/eric6/DebugClients/Python/DebugVariables.py	Sat Sep 21 13:03:17 2019 +0200
@@ -432,12 +432,12 @@
         d = super(NdArrayResolver, self).getDictionary(var)
         
         if var.size > 1024 * 1024:
-            d['min'] = 'ndarray too big, calculating min would slow down' \
-                       ' debugging'
-            d['max'] = 'ndarray too big, calculating max would slow down' \
-                       ' debugging'
-            d['mean'] = 'ndarray too big, calculating mean would slow down' \
-                        ' debugging'
+            d['min'] = (
+                'ndarray too big, calculating min would slow down debugging')
+            d['max'] = (
+                'ndarray too big, calculating max would slow down debugging')
+            d['mean'] = (
+                'ndarray too big, calculating mean would slow down debugging')
         elif self.__isNumeric(var):
             if var.size == 0:
                 d['min'] = 'empty array'

eric ide

mercurial